1. Registry
  2. Packages
  3. Dynatrace
  4. API Docs
  5. OpenpipelineV2UserEventsPipelines
Viewing docs for Dynatrace v0.42.0
published on Friday, Aug 14, 2026 by Pulumiverse
dynatrace logo
Viewing docs for Dynatrace v0.42.0
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.SettingsPermissions resource 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.SettingsPermissions resource.

    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.OpenpipelineV2UserEventsPipelines downloads all existing OpenPipeline definitions for user events 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.OpenpipelineV2UserEventsPipelines("max-pipeline", {
        displayName: "Warning pipeline",
        customId: "pipeline_Warning_pipeline_2773_tf_#name#",
        metadataList: {
            metadatas: [{
                entryKey: "environment",
                entryValue: "production",
            }],
        },
        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,
                    },
                ],
            },
        },
    });
    
    import pulumi
    import pulumiverse_dynatrace as dynatrace
    
    max_pipeline = dynatrace.OpenpipelineV2UserEventsPipelines("max-pipeline",
        display_name="Warning pipeline",
        custom_id="pipeline_Warning_pipeline_2773_tf_#name#",
        metadata_list={
            "metadatas": [{
                "entry_key": "environment",
                "entry_value": "production",
            }],
        },
        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,
                    },
                ],
            },
        })
    
    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.NewOpenpipelineV2UserEventsPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2UserEventsPipelinesArgs{
    			DisplayName: pulumi.String("Warning pipeline"),
    			CustomId:    pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
    			MetadataList: &dynatrace.OpenpipelineV2UserEventsPipelinesMetadataListArgs{
    				Metadatas: dynatrace.OpenpipelineV2UserEventsPipelinesMetadataListMetadataArray{
    					&dynatrace.OpenpipelineV2UserEventsPipelinesMetadataListMetadataArgs{
    						EntryKey:   pulumi.String("environment"),
    						EntryValue: pulumi.String("production"),
    					},
    				},
    			},
    			MetricExtraction: &dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionArgs{
    				Processors: &dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs{
    							Type:        pulumi.String("counterMetric"),
    							Id:          pulumi.String("processor_Count_warning_events_6392"),
    							Description: pulumi.String("Count warnings"),
    							Matcher:     pulumi.String("true"),
    							CounterMetric: &dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
    								MetricKey: pulumi.String("warning.count"),
    								Dimensions: &dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
    									Dimensions: dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.costcenter"),
    										},
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.product"),
    										},
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.security_context"),
    										},
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:       pulumi.String("field"),
    											Strategy:             pulumi.String("equals"),
    											SourceFieldName:      pulumi.String("record.category"),
    											DestinationFieldName: pulumi.String("warning_category"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs{
    							Type:        pulumi.String("valueMetric"),
    							Id:          pulumi.String("processor_Warning_timeout_1990"),
    							Description: pulumi.String("Warning timeout"),
    							Matcher:     pulumi.String("true"),
    							ValueMetric: &dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
    								MetricKey:    pulumi.String("warning.timeout"),
    								Field:        pulumi.String("recording.timeout_in_min"),
    								DefaultValue: pulumi.String("60"),
    								Dimensions: &dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
    									Dimensions: dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.costcenter"),
    										},
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.product"),
    										},
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.security_context"),
    										},
    										&dynatrace.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:       pulumi.String("field"),
    											Strategy:             pulumi.String("equals"),
    											SourceFieldName:      pulumi.String("record.category"),
    											DestinationFieldName: pulumi.String("warning_category"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			SecurityContext: &dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextArgs{
    				Processors: &dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs{
    							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.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
    								Value: &dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
    									Type: pulumi.String("field"),
    									Field: &dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
    										SourceFieldName: pulumi.String("dt.security_context"),
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs{
    							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.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
    								Value: &dynatrace.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
    									Type: pulumi.String("multiValueConstant"),
    									MultiValueConstants: pulumi.StringArray{
    										pulumi.String("ACME1"),
    										pulumi.String("ACME2"),
    									},
    								},
    							},
    							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.OpenpipelineV2UserEventsPipelines("max-pipeline", new()
        {
            DisplayName = "Warning pipeline",
            CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
            MetadataList = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetadataListArgs
            {
                Metadatas = new[]
                {
                    new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetadataListMetadataArgs
                    {
                        EntryKey = "environment",
                        EntryValue = "production",
                    },
                },
            },
            MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs
                        {
                            Type = "counterMetric",
                            Id = "processor_Count_warning_events_6392",
                            Description = "Count warnings",
                            Matcher = "true",
                            CounterMetric = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
                            {
                                MetricKey = "warning.count",
                                Dimensions = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
                                {
                                    Dimensions = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.costcenter",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.product",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.security_context",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "record.category",
                                            DestinationFieldName = "warning_category",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs
                        {
                            Type = "valueMetric",
                            Id = "processor_Warning_timeout_1990",
                            Description = "Warning timeout",
                            Matcher = "true",
                            ValueMetric = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
                            {
                                MetricKey = "warning.timeout",
                                Field = "recording.timeout_in_min",
                                DefaultValue = "60",
                                Dimensions = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
                                {
                                    Dimensions = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.costcenter",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.product",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.security_context",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "record.category",
                                            DestinationFieldName = "warning_category",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            SecurityContext = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
                            {
                                Value = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
                                {
                                    Type = "field",
                                    Field = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
                                    {
                                        SourceFieldName = "dt.security_context",
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
                            {
                                Value = new Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
                                {
                                    Type = "multiValueConstant",
                                    MultiValueConstants = new[]
                                    {
                                        "ACME1",
                                        "ACME2",
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.OpenpipelineV2UserEventsPipelines;
    import com.pulumi.dynatrace.OpenpipelineV2UserEventsPipelinesArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetadataListArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetadataListMetadataArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesSecurityContextArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
    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 OpenpipelineV2UserEventsPipelines("max-pipeline", OpenpipelineV2UserEventsPipelinesArgs.builder()
                .displayName("Warning pipeline")
                .customId("pipeline_Warning_pipeline_2773_tf_#name#")
                .metadataList(OpenpipelineV2UserEventsPipelinesMetadataListArgs.builder()
                    .metadatas(OpenpipelineV2UserEventsPipelinesMetadataListMetadataArgs.builder()
                        .entryKey("environment")
                        .entryValue("production")
                        .build())
                    .build())
                .metricExtraction(OpenpipelineV2UserEventsPipelinesMetricExtractionArgs.builder()
                    .processors(OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
                                .type("counterMetric")
                                .id("processor_Count_warning_events_6392")
                                .description("Count warnings")
                                .matcher("true")
                                .counterMetric(OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
                                    .metricKey("warning.count")
                                    .dimensions(OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
                                        .dimensions(                                    
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.costcenter")
                                                .build(),
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.product")
                                                .build(),
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.security_context")
                                                .build(),
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("record.category")
                                                .destinationFieldName("warning_category")
                                                .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
                                .type("valueMetric")
                                .id("processor_Warning_timeout_1990")
                                .description("Warning timeout")
                                .matcher("true")
                                .valueMetric(OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
                                    .metricKey("warning.timeout")
                                    .field("recording.timeout_in_min")
                                    .defaultValue("60")
                                    .dimensions(OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
                                        .dimensions(                                    
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.costcenter")
                                                .build(),
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.product")
                                                .build(),
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.security_context")
                                                .build(),
                                            OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("record.category")
                                                .destinationFieldName("warning_category")
                                                .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .securityContext(OpenpipelineV2UserEventsPipelinesSecurityContextArgs.builder()
                    .processors(OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
                                    .value(OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
                                        .type("field")
                                        .field(OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
                                            .sourceFieldName("dt.security_context")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
                                    .value(OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
                                        .type("multiValueConstant")
                                        .multiValueConstants(                                    
                                            "ACME1",
                                            "ACME2")
                                        .build())
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      max-pipeline:
        type: dynatrace:OpenpipelineV2UserEventsPipelines
        properties:
          displayName: Warning pipeline
          customId: pipeline_Warning_pipeline_2773_tf_#name#
          metadataList:
            metadatas:
              - entryKey: environment
                entryValue: production
          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
    
    pulumi {
      required_providers {
        dynatrace = {
          source = "pulumi/dynatrace"
        }
      }
    }
    
    resource "dynatrace_openpipelinev2usereventspipelines" "max-pipeline" {
      display_name = "Warning pipeline"
      custom_id    = "pipeline_Warning_pipeline_2773_tf_#name#"
      metadata_list = {
        metadatas = [{
          "entryKey"   = "environment"
          "entryValue" = "production"
        }]
      }
      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
          }]
        }
      }
    }
    

    Create OpenpipelineV2UserEventsPipelines Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OpenpipelineV2UserEventsPipelines(name: string, args: OpenpipelineV2UserEventsPipelinesArgs, opts?: CustomResourceOptions);
    @overload
    def OpenpipelineV2UserEventsPipelines(resource_name: str,
                                          args: OpenpipelineV2UserEventsPipelinesArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenpipelineV2UserEventsPipelines(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          display_name: Optional[str] = None,
                                          custom_id: Optional[str] = None,
                                          metadata_list: Optional[OpenpipelineV2UserEventsPipelinesMetadataListArgs] = None,
                                          davis: Optional[OpenpipelineV2UserEventsPipelinesDavisArgs] = None,
                                          data_extraction: Optional[OpenpipelineV2UserEventsPipelinesDataExtractionArgs] = None,
                                          group_role: Optional[str] = None,
                                          cost_allocation: Optional[OpenpipelineV2UserEventsPipelinesCostAllocationArgs] = None,
                                          metric_extraction: Optional[OpenpipelineV2UserEventsPipelinesMetricExtractionArgs] = None,
                                          processing: Optional[OpenpipelineV2UserEventsPipelinesProcessingArgs] = None,
                                          product_allocation: Optional[OpenpipelineV2UserEventsPipelinesProductAllocationArgs] = None,
                                          routing: Optional[str] = None,
                                          security_context: Optional[OpenpipelineV2UserEventsPipelinesSecurityContextArgs] = None,
                                          smartscape_edge_extraction: Optional[OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs] = None,
                                          smartscape_node_extraction: Optional[OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs] = None,
                                          storage: Optional[OpenpipelineV2UserEventsPipelinesStorageArgs] = None)
    func NewOpenpipelineV2UserEventsPipelines(ctx *Context, name string, args OpenpipelineV2UserEventsPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2UserEventsPipelines, error)
    public OpenpipelineV2UserEventsPipelines(string name, OpenpipelineV2UserEventsPipelinesArgs args, CustomResourceOptions? opts = null)
    public OpenpipelineV2UserEventsPipelines(String name, OpenpipelineV2UserEventsPipelinesArgs args)
    public OpenpipelineV2UserEventsPipelines(String name, OpenpipelineV2UserEventsPipelinesArgs args, CustomResourceOptions options)
    
    type: dynatrace:OpenpipelineV2UserEventsPipelines
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "dynatrace_openpipeline_v2_user_events_pipelines" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args OpenpipelineV2UserEventsPipelinesArgs
    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 OpenpipelineV2UserEventsPipelinesArgs
    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 OpenpipelineV2UserEventsPipelinesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OpenpipelineV2UserEventsPipelinesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OpenpipelineV2UserEventsPipelinesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    OpenpipelineV2UserEventsPipelines 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 OpenpipelineV2UserEventsPipelines resource accepts the following input properties:

    CustomId string
    Custom pipeline id
    DisplayName string
    Display name
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocation
    Cost allocation stage
    DataExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtraction
    Data extraction stage
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavis
    Davis event extraction stage
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetadataList
    Pipeline metadata list
    MetricExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtraction
    Metrics extraction stage
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessing
    Processing stage
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocation
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContext
    Security context stage
    SmartscapeEdgeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    SmartscapeNodeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    Storage Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorage
    Storage stage
    CustomId string
    Custom pipeline id
    DisplayName string
    Display name
    CostAllocation OpenpipelineV2UserEventsPipelinesCostAllocationArgs
    Cost allocation stage
    DataExtraction OpenpipelineV2UserEventsPipelinesDataExtractionArgs
    Data extraction stage
    Davis OpenpipelineV2UserEventsPipelinesDavisArgs
    Davis event extraction stage
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList OpenpipelineV2UserEventsPipelinesMetadataListArgs
    Pipeline metadata list
    MetricExtraction OpenpipelineV2UserEventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    Processing OpenpipelineV2UserEventsPipelinesProcessingArgs
    Processing stage
    ProductAllocation OpenpipelineV2UserEventsPipelinesProductAllocationArgs
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext OpenpipelineV2UserEventsPipelinesSecurityContextArgs
    Security context stage
    SmartscapeEdgeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    SmartscapeNodeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    Storage OpenpipelineV2UserEventsPipelinesStorageArgs
    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_extraction object
    Smartscape edge extraction stage
    smartscape_node_extraction object
    Smartscape node extraction stage
    storage object
    Storage stage
    customId String
    Custom pipeline id
    displayName String
    Display name
    costAllocation OpenpipelineV2UserEventsPipelinesCostAllocation
    Cost allocation stage
    dataExtraction OpenpipelineV2UserEventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UserEventsPipelinesDavis
    Davis event extraction stage
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UserEventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UserEventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UserEventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UserEventsPipelinesProductAllocation
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UserEventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UserEventsPipelinesStorage
    Storage stage
    customId string
    Custom pipeline id
    displayName string
    Display name
    costAllocation OpenpipelineV2UserEventsPipelinesCostAllocation
    Cost allocation stage
    dataExtraction OpenpipelineV2UserEventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UserEventsPipelinesDavis
    Davis event extraction stage
    groupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UserEventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UserEventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UserEventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UserEventsPipelinesProductAllocation
    Product allocation stage
    routing string
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UserEventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UserEventsPipelinesStorage
    Storage stage
    custom_id str
    Custom pipeline id
    display_name str
    Display name
    cost_allocation OpenpipelineV2UserEventsPipelinesCostAllocationArgs
    Cost allocation stage
    data_extraction OpenpipelineV2UserEventsPipelinesDataExtractionArgs
    Data extraction stage
    davis OpenpipelineV2UserEventsPipelinesDavisArgs
    Davis event extraction stage
    group_role str
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadata_list OpenpipelineV2UserEventsPipelinesMetadataListArgs
    Pipeline metadata list
    metric_extraction OpenpipelineV2UserEventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    processing OpenpipelineV2UserEventsPipelinesProcessingArgs
    Processing stage
    product_allocation OpenpipelineV2UserEventsPipelinesProductAllocationArgs
    Product allocation stage
    routing str
    Routing. Possible values: notRoutable, routable
    security_context OpenpipelineV2UserEventsPipelinesSecurityContextArgs
    Security context stage
    smartscape_edge_extraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    smartscape_node_extraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    storage OpenpipelineV2UserEventsPipelinesStorageArgs
    Storage stage
    customId String
    Custom pipeline id
    displayName String
    Display name
    costAllocation Property Map
    Cost allocation stage
    dataExtraction Property Map
    Data extraction stage
    davis Property Map
    Davis event extraction stage
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList Property Map
    Pipeline metadata list
    metricExtraction Property Map
    Metrics extraction stage
    processing Property Map
    Processing stage
    productAllocation Property Map
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext Property Map
    Security context stage
    smartscapeEdgeExtraction Property Map
    Smartscape edge extraction stage
    smartscapeNodeExtraction Property Map
    Smartscape node extraction stage
    storage Property Map
    Storage stage

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OpenpipelineV2UserEventsPipelines 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 OpenpipelineV2UserEventsPipelines Resource

    Get an existing OpenpipelineV2UserEventsPipelines 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?: OpenpipelineV2UserEventsPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2UserEventsPipelines
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cost_allocation: Optional[OpenpipelineV2UserEventsPipelinesCostAllocationArgs] = None,
            custom_id: Optional[str] = None,
            data_extraction: Optional[OpenpipelineV2UserEventsPipelinesDataExtractionArgs] = None,
            davis: Optional[OpenpipelineV2UserEventsPipelinesDavisArgs] = None,
            display_name: Optional[str] = None,
            group_role: Optional[str] = None,
            metadata_list: Optional[OpenpipelineV2UserEventsPipelinesMetadataListArgs] = None,
            metric_extraction: Optional[OpenpipelineV2UserEventsPipelinesMetricExtractionArgs] = None,
            processing: Optional[OpenpipelineV2UserEventsPipelinesProcessingArgs] = None,
            product_allocation: Optional[OpenpipelineV2UserEventsPipelinesProductAllocationArgs] = None,
            routing: Optional[str] = None,
            security_context: Optional[OpenpipelineV2UserEventsPipelinesSecurityContextArgs] = None,
            smartscape_edge_extraction: Optional[OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs] = None,
            smartscape_node_extraction: Optional[OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs] = None,
            storage: Optional[OpenpipelineV2UserEventsPipelinesStorageArgs] = None) -> OpenpipelineV2UserEventsPipelines
    func GetOpenpipelineV2UserEventsPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2UserEventsPipelinesState, opts ...ResourceOption) (*OpenpipelineV2UserEventsPipelines, error)
    public static OpenpipelineV2UserEventsPipelines Get(string name, Input<string> id, OpenpipelineV2UserEventsPipelinesState? state, CustomResourceOptions? opts = null)
    public static OpenpipelineV2UserEventsPipelines get(String name, Output<String> id, OpenpipelineV2UserEventsPipelinesState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:OpenpipelineV2UserEventsPipelines    get:      id: ${id}
    import {
      to = dynatrace_openpipeline_v2_user_events_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.
    The following state arguments are supported:
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocation
    Cost allocation stage
    CustomId string
    Custom pipeline id
    DataExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtraction
    Data extraction stage
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavis
    Davis event extraction stage
    DisplayName string
    Display name
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetadataList
    Pipeline metadata list
    MetricExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtraction
    Metrics extraction stage
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessing
    Processing stage
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocation
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContext
    Security context stage
    SmartscapeEdgeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    SmartscapeNodeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    Storage Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorage
    Storage stage
    CostAllocation OpenpipelineV2UserEventsPipelinesCostAllocationArgs
    Cost allocation stage
    CustomId string
    Custom pipeline id
    DataExtraction OpenpipelineV2UserEventsPipelinesDataExtractionArgs
    Data extraction stage
    Davis OpenpipelineV2UserEventsPipelinesDavisArgs
    Davis event extraction stage
    DisplayName string
    Display name
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList OpenpipelineV2UserEventsPipelinesMetadataListArgs
    Pipeline metadata list
    MetricExtraction OpenpipelineV2UserEventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    Processing OpenpipelineV2UserEventsPipelinesProcessingArgs
    Processing stage
    ProductAllocation OpenpipelineV2UserEventsPipelinesProductAllocationArgs
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext OpenpipelineV2UserEventsPipelinesSecurityContextArgs
    Security context stage
    SmartscapeEdgeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    SmartscapeNodeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    Storage OpenpipelineV2UserEventsPipelinesStorageArgs
    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_extraction object
    Smartscape edge extraction stage
    smartscape_node_extraction object
    Smartscape node extraction stage
    storage object
    Storage stage
    costAllocation OpenpipelineV2UserEventsPipelinesCostAllocation
    Cost allocation stage
    customId String
    Custom pipeline id
    dataExtraction OpenpipelineV2UserEventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UserEventsPipelinesDavis
    Davis event extraction stage
    displayName String
    Display name
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UserEventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UserEventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UserEventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UserEventsPipelinesProductAllocation
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UserEventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UserEventsPipelinesStorage
    Storage stage
    costAllocation OpenpipelineV2UserEventsPipelinesCostAllocation
    Cost allocation stage
    customId string
    Custom pipeline id
    dataExtraction OpenpipelineV2UserEventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UserEventsPipelinesDavis
    Davis event extraction stage
    displayName string
    Display name
    groupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UserEventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UserEventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UserEventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UserEventsPipelinesProductAllocation
    Product allocation stage
    routing string
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UserEventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UserEventsPipelinesStorage
    Storage stage
    cost_allocation OpenpipelineV2UserEventsPipelinesCostAllocationArgs
    Cost allocation stage
    custom_id str
    Custom pipeline id
    data_extraction OpenpipelineV2UserEventsPipelinesDataExtractionArgs
    Data extraction stage
    davis OpenpipelineV2UserEventsPipelinesDavisArgs
    Davis event extraction stage
    display_name str
    Display name
    group_role str
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadata_list OpenpipelineV2UserEventsPipelinesMetadataListArgs
    Pipeline metadata list
    metric_extraction OpenpipelineV2UserEventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    processing OpenpipelineV2UserEventsPipelinesProcessingArgs
    Processing stage
    product_allocation OpenpipelineV2UserEventsPipelinesProductAllocationArgs
    Product allocation stage
    routing str
    Routing. Possible values: notRoutable, routable
    security_context OpenpipelineV2UserEventsPipelinesSecurityContextArgs
    Security context stage
    smartscape_edge_extraction OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    smartscape_node_extraction OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    storage OpenpipelineV2UserEventsPipelinesStorageArgs
    Storage stage
    costAllocation Property Map
    Cost allocation stage
    customId String
    Custom pipeline id
    dataExtraction Property Map
    Data extraction stage
    davis Property Map
    Davis event extraction stage
    displayName String
    Display name
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList Property Map
    Pipeline metadata list
    metricExtraction Property Map
    Metrics extraction stage
    processing Property Map
    Processing stage
    productAllocation Property Map
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext Property Map
    Security context stage
    smartscapeEdgeExtraction Property Map
    Smartscape edge extraction stage
    smartscapeNodeExtraction Property Map
    Smartscape node extraction stage
    storage Property Map
    Storage stage

    Supporting Types

    OpenpipelineV2UserEventsPipelinesCostAllocation, OpenpipelineV2UserEventsPipelinesCostAllocationArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessors, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtraction, OpenpipelineV2UserEventsPipelinesDataExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessors, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavis, OpenpipelineV2UserEventsPipelinesDavisArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesDavisProcessors, OpenpipelineV2UserEventsPipelinesDavisProcessorsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessor, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetadataList, OpenpipelineV2UserEventsPipelinesMetadataListArgs

    OpenpipelineV2UserEventsPipelinesMetadataListMetadata, OpenpipelineV2UserEventsPipelinesMetadataListMetadataArgs

    EntryKey string
    Metadata entry key
    EntryValue string
    Metadata entry value
    EntryKey string
    Metadata entry key
    EntryValue string
    Metadata entry value
    entry_key string
    Metadata entry key
    entry_value string
    Metadata entry value
    entryKey String
    Metadata entry key
    entryValue String
    Metadata entry value
    entryKey string
    Metadata entry key
    entryValue string
    Metadata entry value
    entry_key str
    Metadata entry key
    entry_value str
    Metadata entry value
    entryKey String
    Metadata entry key
    entryValue String
    Metadata entry value

    OpenpipelineV2UserEventsPipelinesMetricExtraction, OpenpipelineV2UserEventsPipelinesMetricExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessors, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessing, OpenpipelineV2UserEventsPipelinesProcessingArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesProcessingProcessors, OpenpipelineV2UserEventsPipelinesProcessingProcessorsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessor, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocation, OpenpipelineV2UserEventsPipelinesProductAllocationArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessors, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContext, OpenpipelineV2UserEventsPipelinesSecurityContextArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessors, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessor, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessors, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessor, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessors, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessor, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorage, OpenpipelineV2UserEventsPipelinesStorageArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UserEventsPipelinesStorageProcessors, OpenpipelineV2UserEventsPipelinesStorageProcessorsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessor, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorArgs

    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
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetric
    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
    AzureLogForwarding OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetric
    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_forwarding object
    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_counter_metric object
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric object
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric object
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetric
    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
    azureLogForwarding OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetric
    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_forwarding OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetric
    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
    azureLogForwarding Property Map
    Azure log forwarding processor attributes
    bizevent Property Map
    Bizevent extraction processor attributes
    bucketAssignment Property Map
    Bucket assignment processor attributes
    costAllocation Property Map
    Cost allocation processor attributes
    counterMetric Property Map
    Counter metric processor attributes
    davis Property Map
    Davis event extraction processor attributes
    dql Property Map
    DQL processor attributes
    fieldsAdd Property Map
    Fields add processor attributes
    fieldsRemove Property Map
    Fields remove processor attributes
    fieldsRename Property Map
    Fields rename processor attributes
    geoLookup Property Map
    Geo lookup processor attributes
    histogramMetric Property Map
    Histogram metric processor attributes
    inlineLookup Property Map
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation Property Map
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric Property Map
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric Property Map
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric Property Map
    Sampling aware value metric processor attributes
    sdlcEvent Property Map
    SdlcEvent extraction processor attributes
    securityContext Property Map
    Security context processor attributes
    securityEvent Property Map
    Security event extraction processor attributes
    smartscapeEdge Property Map
    Smartscape edge extraction processor attributes
    smartscapeNode Property Map
    Smartscape node extraction processor attributes
    technology Property Map
    Technology processor attributes
    valueMetric Property Map
    Value metric processor attributes

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwarding, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingArgs

    field_extraction object
    Field Extraction
    forwarder_config_id string
    No documentation available
    fieldExtraction Property Map
    Field Extraction
    forwarderConfigId String
    No documentation available

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizevent, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventArgs

    event_provider object
    Event provider
    event_type object
    Event type
    field_extraction object
    Field extraction

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProvider, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventType, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignment, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs

    BucketName string
    Bucket name
    BucketName string
    Bucket name
    bucket_name string
    Bucket name
    bucketName String
    Bucket name
    bucketName string
    Bucket name
    bucket_name str
    Bucket name
    bucketName String
    Bucket name

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocation, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationArgs

    value object
    The strategy to set the cost allocation field
    value Property Map
    The strategy to set the cost allocation field

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValue, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCostAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetric, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetricArgs

    metric_key string
    Metric key
    dimensions object
    List of dimensions
    metricKey String
    Metric key
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavis, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavisProperties, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDavisPropertiesPropertyArgs

    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    Key string
    No documentation available
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    Value string
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available
    key string
    No documentation available
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    value string
    No documentation available
    key str
    No documentation available
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    value str
    No documentation available
    key String
    No documentation available
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    value String
    No documentation available

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDql, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAdd, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAddFields, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsAddFieldsFieldArgs

    Name string
    Fields's name
    Value string
    Field's value
    Name string
    Fields's name
    Value string
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name String
    Fields's name
    value String
    Field's value
    name string
    Fields's name
    value string
    Field's value
    name str
    Fields's name
    value str
    Field's value
    name String
    Fields's name
    value String
    Field's value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemove, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRename, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRenameFields, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorFieldsRenameFieldsFieldArgs

    FromName string
    Fields's name
    ToName string
    New field's name
    FromName string
    Fields's name
    ToName string
    New field's name
    from_name string
    Fields's name
    to_name string
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name
    fromName string
    Fields's name
    toName string
    New field's name
    from_name str
    Fields's name
    to_name str
    New field's name
    fromName String
    Fields's name
    toName String
    New field's name

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookup, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorGeoLookupArgs

    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields 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
    IpFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    GeoFieldPrefix string
    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.
    OutputFields []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_key string
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix string
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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
    ipFieldKey string
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix string
    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.
    outputFields 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_key str
    The field key that contains the IP address to be resolved to a geo location.
    geo_field_prefix str
    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
    ipFieldKey String
    The field key that contains the IP address to be resolved to a geo location.
    geoFieldPrefix String
    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.
    outputFields 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

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetric, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookup, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorInlineLookupArgs

    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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.
    DestinationField string
    The field key to write the matched lookup value to.
    InlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    SourceField string
    The field key whose value is looked up in the lookup table.
    DefaultValue 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_table string
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.
    destinationField string
    The field key to write the matched lookup value to.
    inlineLookupTable string
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField string
    The field key whose value is looked up in the lookup table.
    defaultValue 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_table str
    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.
    destinationField String
    The field key to write the matched lookup value to.
    inlineLookupTable String
    The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
    sourceField String
    The field key whose value is looked up in the lookup table.
    defaultValue 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.

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocation, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationArgs

    value object
    The strategy to set product allocation field
    value Property Map
    The strategy to set product allocation field

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValue, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorProductAllocationValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricArgs

    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    Sampling string
    Possible values: disabled, enabled
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    Dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling String
    Possible values: disabled, enabled
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling string
    Possible values: disabled, enabled
    metric_key str
    Metric key
    aggregation str
    Possible values: disabled, enabled
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions
    List of dimensions
    sampling str
    Possible values: disabled, enabled
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    dimensions Property Map
    List of dimensions
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricArgs

    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    Sampling string
    Possible values: disabled, enabled
    Measurement string
    Possible values: duration, field
    MetricKey string
    Metric key
    Aggregation string
    Possible values: disabled, enabled
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions
    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
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled
    measurement string
    Possible values: duration, field
    metricKey string
    Metric key
    aggregation string
    Possible values: disabled, enabled
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    sampling str
    Possible values: disabled, enabled
    measurement String
    Possible values: duration, field
    metricKey String
    Metric key
    aggregation String
    Possible values: disabled, enabled
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions
    field String
    Field with metric value
    sampling String
    Possible values: disabled, enabled

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEvent, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventProviderFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventStatusFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventType, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventEventTypeFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContext, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextArgs

    value object
    Security context value assignment
    value Property Map
    Security context value assignment

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValue, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityContextValueFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEvent, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes list(string)
    Fields
    include object
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdge, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeEdgeArgs

    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    SourceIdFieldName string
    Source ID field name
    SourceType string
    Source type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    source_id_field_name string
    Source ID field name
    source_type string
    Source type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    sourceIdFieldName string
    Source ID field name
    sourceType string
    Source type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    source_id_field_name str
    Source ID field name
    source_type str
    Source type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    sourceIdFieldName String
    Source ID field name
    sourceType String
    Source type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNode, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeArgs

    extract_node bool
    Extract node
    id_components object
    ID components
    node_id_field_name string
    Node ID field name
    node_type string
    Node type
    fields_to_extract object
    Fields to extract
    node_name object
    Node name
    static_edges_to_extract object
    Static edges to extract
    extractNode Boolean
    Extract node
    idComponents Property Map
    ID components
    nodeIdFieldName String
    Node ID field name
    nodeType String
    Node type
    fieldsToExtract Property Map
    Fields to extract
    nodeName Property Map
    Node name
    staticEdgesToExtract Property Map
    Static edges to extract

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ReferencedFieldName string
    Referenced field name
    FieldName string
    Field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name string
    Referenced field name
    field_name string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName string
    Referenced field name
    fieldName string
    Field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    referenced_field_name str
    Referenced field name
    field_name str
    Field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    referencedFieldName String
    Referenced field name
    fieldName String
    Field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    IdComponent string
    ID component
    ReferencedFieldName string
    Referenced field name
    id_component string
    ID component
    referenced_field_name string
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name
    idComponent string
    ID component
    referencedFieldName string
    Referenced field name
    id_component str
    ID component
    referenced_field_name str
    Referenced field name
    idComponent String
    ID component
    referencedFieldName String
    Referenced field name

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants List<string>
    Constant multi value
    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    MultiValueConstants []string
    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_constants list(string)
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants List<String>
    Constant multi value
    type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant string
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multi_value_constants Sequence[str]
    Constant multi value
    type String
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant String
    Constant value
    field Property Map
    Value from field
    multiValueConstants List<String>
    Constant multi value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    SourceFieldName string
    Source field name
    DefaultValue string
    Default value
    source_field_name string
    Source field name
    default_value string
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value
    sourceFieldName string
    Source field name
    defaultValue string
    Default value
    source_field_name str
    Source field name
    default_value str
    Default value
    sourceFieldName String
    Source field name
    defaultValue String
    Default value

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    EdgeType string
    Edge type
    TargetIdFieldName string
    Target ID field name
    TargetType string
    Target type
    edge_type string
    Edge type
    target_id_field_name string
    Target ID field name
    target_type string
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type
    edgeType string
    Edge type
    targetIdFieldName string
    Target ID field name
    targetType string
    Target type
    edge_type str
    Edge type
    target_id_field_name str
    Target ID field name
    target_type str
    Target type
    edgeType String
    Edge type
    targetIdFieldName String
    Target ID field name
    targetType String
    Target type

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnology, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorTechnologyArgs

    TechnologyId string
    Technology ID
    CustomMatcher string
    Custom matching condition which should be used instead of technology matcher.
    TechnologyId string
    Technology ID
    CustomMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.
    technologyId string
    Technology ID
    customMatcher 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.
    technologyId String
    Technology ID
    customMatcher String
    Custom matching condition which should be used instead of technology matcher.

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetric, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricArgs

    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensions
    List of dimensions
    Field string
    Field with metric value
    MetricKey string
    Metric key
    DefaultValue string
    Default value with metric value
    Dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensions
    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
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensions
    List of dimensions
    field string
    Field with metric value
    metricKey string
    Metric key
    defaultValue string
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensions
    List of dimensions
    field str
    Field with metric value
    metric_key str
    Metric key
    default_value str
    Default value with metric value
    dimensions OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensions
    List of dimensions
    field String
    Field with metric value
    metricKey String
    Metric key
    defaultValue String
    Default value with metric value
    dimensions Property Map
    List of dimensions

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensions, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UserEventsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name string
    Destination field name
    constant_value string
    Constant value to be assigned to field
    default_value string
    Default value
    destination_field_name string
    Destination field name
    extraction_type string
    Field value extraction type. Possible values: constant, field
    source_field_name string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName string
    Destination field name
    constantValue string
    Constant value to be assigned to field
    defaultValue string
    Default value
    destinationFieldName string
    Destination field name
    extractionType string
    Field value extraction type. Possible values: constant, field
    sourceFieldName string
    Source field name
    strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    constant_field_name str
    Destination field name
    constant_value str
    Constant value to be assigned to field
    default_value str
    Default value
    destination_field_name str
    Destination field name
    extraction_type str
    Field value extraction type. Possible values: constant, field
    source_field_name str
    Source field name
    strategy str
    Strategy for field extraction. Possible values: equals, startsWith
    constantFieldName String
    Destination field name
    constantValue String
    Constant value to be assigned to field
    defaultValue String
    Default value
    destinationFieldName String
    Destination field name
    extractionType String
    Field value extraction type. Possible values: constant, field
    sourceFieldName String
    Source field name
    strategy String
    Strategy for field extraction. Possible values: equals, startsWith

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Viewing docs for Dynatrace v0.42.0
    published on Friday, Aug 14, 2026 by Pulumiverse

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial