1. Registry
  2. Packages
  3. Dynatrace
  4. API Docs
  5. OpenpipelineV2BizeventsPipelines
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.OpenpipelineV2BizeventsPipelines downloads all existing OpenPipeline definitions for bizevents pipelines

    The full documentation of the export feature is available here.

    Resource Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dynatrace from "@pulumiverse/dynatrace";
    
    const max_pipeline = new dynatrace.OpenpipelineV2BizeventsPipelines("max-pipeline", {
        displayName: "Warning pipeline",
        customId: "pipeline_Warning_pipeline_2773_tf_#name#",
        metadataList: {
            metadatas: [{
                entryKey: "environment",
                entryValue: "production",
            }],
        },
        processing: {
            processors: {
                processors: [
                    {
                        type: "drop",
                        id: "processor_Drop_unnecessary_records_3802",
                        description: "Drop unnecessary records",
                        matcher: "not matchesPhrase(record.name, \"Warning\")",
                        enabled: true,
                    },
                    {
                        type: "fieldsAdd",
                        id: "processor_Add_warning_flag_5434",
                        description: "Add warning flag",
                        matcher: "matchesPhrase(record.name, \"Warning\")",
                        sampleData: `{
      "record.name": "Warning record" 
    }`,
                        fieldsAdd: {
                            fields: {
                                fields: [{
                                    name: "is_warning",
                                    value: "true",
                                }],
                            },
                        },
                        enabled: true,
                    },
                    {
                        type: "fieldsRemove",
                        id: "processor_Remove_details_field_8539",
                        description: "Remove details field",
                        sampleData: `{
      "record.name": "Warning",
      "record.details": "some record details"
    }`,
                        matcher: "isNotNull(record.details)",
                        fieldsRemove: {
                            fields: ["record.details"],
                        },
                        enabled: true,
                    },
                    {
                        type: "fieldsRename",
                        id: "processor_Rename_name_to_title_8530",
                        description: "Rename name to title",
                        sampleData: `{
      "record.name": "Warning"
    }`,
                        matcher: "true",
                        fieldsRename: {
                            fields: {
                                fields: [{
                                    fromName: "record.name",
                                    toName: "record.title",
                                }],
                            },
                        },
                        enabled: true,
                    },
                    {
                        type: "dql",
                        id: "processor_Combine_title_and_summary_to_name_8808",
                        description: "Combine title and summary to name",
                        sampleData: `{
      "record.title": "Warning",
      "record.summary": "Request failed"
    }`,
                        matcher: "true",
                        dql: {
                            script: "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
                        },
                        enabled: true,
                    },
                ],
            },
        },
        davis: {
            processors: {
                processors: [{
                    type: "davis",
                    id: "processor_Create_warning_event_8226",
                    description: "Create warning event",
                    matcher: "true",
                    davis: {
                        properties: {
                            properties: [
                                {
                                    key: "event.type",
                                    value: "CUSTOM_ALERT",
                                },
                                {
                                    key: "event.name",
                                    value: "Warning detected",
                                },
                                {
                                    key: "event.description",
                                    value: "Warning: {dims:record.summary}",
                                },
                            ],
                        },
                    },
                    enabled: true,
                }],
            },
        },
        metricExtraction: {
            processors: {
                processors: [
                    {
                        type: "counterMetric",
                        id: "processor_Count_warning_events_6392",
                        description: "Count warnings",
                        matcher: "true",
                        counterMetric: {
                            metricKey: "warning.count",
                            dimensions: {
                                dimensions: [
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "dt.cost.costcenter",
                                    },
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "dt.cost.product",
                                    },
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "dt.security_context",
                                    },
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "record.category",
                                        destinationFieldName: "warning_category",
                                    },
                                ],
                            },
                        },
                        enabled: true,
                    },
                    {
                        type: "valueMetric",
                        id: "processor_Warning_timeout_1990",
                        description: "Warning timeout",
                        matcher: "true",
                        valueMetric: {
                            metricKey: "warning.timeout",
                            field: "recording.timeout_in_min",
                            defaultValue: "60",
                            dimensions: {
                                dimensions: [
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "dt.cost.costcenter",
                                    },
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "dt.cost.product",
                                    },
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "dt.security_context",
                                    },
                                    {
                                        extractionType: "field",
                                        strategy: "equals",
                                        sourceFieldName: "record.category",
                                        destinationFieldName: "warning_category",
                                    },
                                ],
                            },
                        },
                        enabled: true,
                    },
                ],
            },
        },
        securityContext: {
            processors: {
                processors: [
                    {
                        type: "securityContext",
                        id: "processor_Use_dt.security_context_if_set_1080",
                        description: "Use dt.security_context if set",
                        matcher: "isNotNull(dt.security_context)",
                        securityContext: {
                            value: {
                                type: "field",
                                field: {
                                    sourceFieldName: "dt.security_context",
                                },
                            },
                        },
                        enabled: true,
                    },
                    {
                        type: "securityContext",
                        id: "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
                        description: "Assign warnings to ACME teams if no context set",
                        matcher: "isNull(dt.security_context)",
                        securityContext: {
                            value: {
                                type: "multiValueConstant",
                                multiValueConstants: [
                                    "ACME1",
                                    "ACME2",
                                ],
                            },
                        },
                        enabled: true,
                    },
                ],
            },
        },
        storage: {
            processors: {
                processors: [{
                    type: "bucketAssignment",
                    id: "processor_Add_to_default_bucket_5010",
                    description: "Add to default bucket",
                    matcher: "true",
                    bucketAssignment: {
                        bucketName: "default_events",
                    },
                    enabled: true,
                }],
            },
        },
    });
    
    import pulumi
    import pulumiverse_dynatrace as dynatrace
    
    max_pipeline = dynatrace.OpenpipelineV2BizeventsPipelines("max-pipeline",
        display_name="Warning pipeline",
        custom_id="pipeline_Warning_pipeline_2773_tf_#name#",
        metadata_list={
            "metadatas": [{
                "entry_key": "environment",
                "entry_value": "production",
            }],
        },
        processing={
            "processors": {
                "processors": [
                    {
                        "type": "drop",
                        "id": "processor_Drop_unnecessary_records_3802",
                        "description": "Drop unnecessary records",
                        "matcher": "not matchesPhrase(record.name, \"Warning\")",
                        "enabled": True,
                    },
                    {
                        "type": "fieldsAdd",
                        "id": "processor_Add_warning_flag_5434",
                        "description": "Add warning flag",
                        "matcher": "matchesPhrase(record.name, \"Warning\")",
                        "sample_data": """{
      "record.name": "Warning record" 
    }""",
                        "fields_add": {
                            "fields": {
                                "fields": [{
                                    "name": "is_warning",
                                    "value": "true",
                                }],
                            },
                        },
                        "enabled": True,
                    },
                    {
                        "type": "fieldsRemove",
                        "id": "processor_Remove_details_field_8539",
                        "description": "Remove details field",
                        "sample_data": """{
      "record.name": "Warning",
      "record.details": "some record details"
    }""",
                        "matcher": "isNotNull(record.details)",
                        "fields_remove": {
                            "fields": ["record.details"],
                        },
                        "enabled": True,
                    },
                    {
                        "type": "fieldsRename",
                        "id": "processor_Rename_name_to_title_8530",
                        "description": "Rename name to title",
                        "sample_data": """{
      "record.name": "Warning"
    }""",
                        "matcher": "true",
                        "fields_rename": {
                            "fields": {
                                "fields": [{
                                    "from_name": "record.name",
                                    "to_name": "record.title",
                                }],
                            },
                        },
                        "enabled": True,
                    },
                    {
                        "type": "dql",
                        "id": "processor_Combine_title_and_summary_to_name_8808",
                        "description": "Combine title and summary to name",
                        "sample_data": """{
      "record.title": "Warning",
      "record.summary": "Request failed"
    }""",
                        "matcher": "true",
                        "dql": {
                            "script": "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
                        },
                        "enabled": True,
                    },
                ],
            },
        },
        davis={
            "processors": {
                "processors": [{
                    "type": "davis",
                    "id": "processor_Create_warning_event_8226",
                    "description": "Create warning event",
                    "matcher": "true",
                    "davis": {
                        "properties": {
                            "properties": [
                                {
                                    "key": "event.type",
                                    "value": "CUSTOM_ALERT",
                                },
                                {
                                    "key": "event.name",
                                    "value": "Warning detected",
                                },
                                {
                                    "key": "event.description",
                                    "value": "Warning: {dims:record.summary}",
                                },
                            ],
                        },
                    },
                    "enabled": True,
                }],
            },
        },
        metric_extraction={
            "processors": {
                "processors": [
                    {
                        "type": "counterMetric",
                        "id": "processor_Count_warning_events_6392",
                        "description": "Count warnings",
                        "matcher": "true",
                        "counter_metric": {
                            "metric_key": "warning.count",
                            "dimensions": {
                                "dimensions": [
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "dt.cost.costcenter",
                                    },
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "dt.cost.product",
                                    },
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "dt.security_context",
                                    },
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "record.category",
                                        "destination_field_name": "warning_category",
                                    },
                                ],
                            },
                        },
                        "enabled": True,
                    },
                    {
                        "type": "valueMetric",
                        "id": "processor_Warning_timeout_1990",
                        "description": "Warning timeout",
                        "matcher": "true",
                        "value_metric": {
                            "metric_key": "warning.timeout",
                            "field": "recording.timeout_in_min",
                            "default_value": "60",
                            "dimensions": {
                                "dimensions": [
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "dt.cost.costcenter",
                                    },
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "dt.cost.product",
                                    },
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "dt.security_context",
                                    },
                                    {
                                        "extraction_type": "field",
                                        "strategy": "equals",
                                        "source_field_name": "record.category",
                                        "destination_field_name": "warning_category",
                                    },
                                ],
                            },
                        },
                        "enabled": True,
                    },
                ],
            },
        },
        security_context={
            "processors": {
                "processors": [
                    {
                        "type": "securityContext",
                        "id": "processor_Use_dt.security_context_if_set_1080",
                        "description": "Use dt.security_context if set",
                        "matcher": "isNotNull(dt.security_context)",
                        "security_context": {
                            "value": {
                                "type": "field",
                                "field": {
                                    "source_field_name": "dt.security_context",
                                },
                            },
                        },
                        "enabled": True,
                    },
                    {
                        "type": "securityContext",
                        "id": "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
                        "description": "Assign warnings to ACME teams if no context set",
                        "matcher": "isNull(dt.security_context)",
                        "security_context": {
                            "value": {
                                "type": "multiValueConstant",
                                "multi_value_constants": [
                                    "ACME1",
                                    "ACME2",
                                ],
                            },
                        },
                        "enabled": True,
                    },
                ],
            },
        },
        storage={
            "processors": {
                "processors": [{
                    "type": "bucketAssignment",
                    "id": "processor_Add_to_default_bucket_5010",
                    "description": "Add to default bucket",
                    "matcher": "true",
                    "bucket_assignment": {
                        "bucket_name": "default_events",
                    },
                    "enabled": True,
                }],
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := dynatrace.NewOpenpipelineV2BizeventsPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2BizeventsPipelinesArgs{
    			DisplayName: pulumi.String("Warning pipeline"),
    			CustomId:    pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
    			MetadataList: &dynatrace.OpenpipelineV2BizeventsPipelinesMetadataListArgs{
    				Metadatas: dynatrace.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArray{
    					&dynatrace.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs{
    						EntryKey:   pulumi.String("environment"),
    						EntryValue: pulumi.String("production"),
    					},
    				},
    			},
    			Processing: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingArgs{
    				Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
    							Type:        pulumi.String("drop"),
    							Id:          pulumi.String("processor_Drop_unnecessary_records_3802"),
    							Description: pulumi.String("Drop unnecessary records"),
    							Matcher:     pulumi.String("not matchesPhrase(record.name, \"Warning\")"),
    							Enabled:     pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
    							Type:        pulumi.String("fieldsAdd"),
    							Id:          pulumi.String("processor_Add_warning_flag_5434"),
    							Description: pulumi.String("Add warning flag"),
    							Matcher:     pulumi.String("matchesPhrase(record.name, \"Warning\")"),
    							SampleData:  pulumi.String("{\n  \"record.name\": \"Warning record\" \n}"),
    							FieldsAdd: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs{
    								Fields: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
    									Fields: dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
    										&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
    											Name:  pulumi.String("is_warning"),
    											Value: pulumi.String("true"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
    							Type:        pulumi.String("fieldsRemove"),
    							Id:          pulumi.String("processor_Remove_details_field_8539"),
    							Description: pulumi.String("Remove details field"),
    							SampleData:  pulumi.String("{\n  \"record.name\": \"Warning\",\n  \"record.details\": \"some record details\"\n}"),
    							Matcher:     pulumi.String("isNotNull(record.details)"),
    							FieldsRemove: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
    								Fields: pulumi.StringArray{
    									pulumi.String("record.details"),
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
    							Type:        pulumi.String("fieldsRename"),
    							Id:          pulumi.String("processor_Rename_name_to_title_8530"),
    							Description: pulumi.String("Rename name to title"),
    							SampleData:  pulumi.String("{\n  \"record.name\": \"Warning\"\n}"),
    							Matcher:     pulumi.String("true"),
    							FieldsRename: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
    								Fields: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
    									Fields: dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
    										&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
    											FromName: pulumi.String("record.name"),
    											ToName:   pulumi.String("record.title"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
    							Type:        pulumi.String("dql"),
    							Id:          pulumi.String("processor_Combine_title_and_summary_to_name_8808"),
    							Description: pulumi.String("Combine title and summary to name"),
    							SampleData:  pulumi.String("{\n  \"record.title\": \"Warning\",\n  \"record.summary\": \"Request failed\"\n}"),
    							Matcher:     pulumi.String("true"),
    							Dql: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs{
    								Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			Davis: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisArgs{
    				Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs{
    							Type:        pulumi.String("davis"),
    							Id:          pulumi.String("processor_Create_warning_event_8226"),
    							Description: pulumi.String("Create warning event"),
    							Matcher:     pulumi.String("true"),
    							Davis: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs{
    								Properties: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs{
    									Properties: dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArray{
    										&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
    											Key:   pulumi.String("event.type"),
    											Value: pulumi.String("CUSTOM_ALERT"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
    											Key:   pulumi.String("event.name"),
    											Value: pulumi.String("Warning detected"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
    											Key:   pulumi.String("event.description"),
    											Value: pulumi.String("Warning: {dims:record.summary}"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			MetricExtraction: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionArgs{
    				Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs{
    							Type:        pulumi.String("counterMetric"),
    							Id:          pulumi.String("processor_Count_warning_events_6392"),
    							Description: pulumi.String("Count warnings"),
    							Matcher:     pulumi.String("true"),
    							CounterMetric: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
    								MetricKey: pulumi.String("warning.count"),
    								Dimensions: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
    									Dimensions: dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.costcenter"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.product"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.security_context"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:       pulumi.String("field"),
    											Strategy:             pulumi.String("equals"),
    											SourceFieldName:      pulumi.String("record.category"),
    											DestinationFieldName: pulumi.String("warning_category"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs{
    							Type:        pulumi.String("valueMetric"),
    							Id:          pulumi.String("processor_Warning_timeout_1990"),
    							Description: pulumi.String("Warning timeout"),
    							Matcher:     pulumi.String("true"),
    							ValueMetric: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
    								MetricKey:    pulumi.String("warning.timeout"),
    								Field:        pulumi.String("recording.timeout_in_min"),
    								DefaultValue: pulumi.String("60"),
    								Dimensions: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
    									Dimensions: dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.costcenter"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.product"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.security_context"),
    										},
    										&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:       pulumi.String("field"),
    											Strategy:             pulumi.String("equals"),
    											SourceFieldName:      pulumi.String("record.category"),
    											DestinationFieldName: pulumi.String("warning_category"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			SecurityContext: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextArgs{
    				Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs{
    							Type:        pulumi.String("securityContext"),
    							Id:          pulumi.String("processor_Use_dt.security_context_if_set_1080"),
    							Description: pulumi.String("Use dt.security_context if set"),
    							Matcher:     pulumi.String("isNotNull(dt.security_context)"),
    							SecurityContext: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
    								Value: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
    									Type: pulumi.String("field"),
    									Field: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
    										SourceFieldName: pulumi.String("dt.security_context"),
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs{
    							Type:        pulumi.String("securityContext"),
    							Id:          pulumi.String("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"),
    							Description: pulumi.String("Assign warnings to ACME teams if no context set"),
    							Matcher:     pulumi.String("isNull(dt.security_context)"),
    							SecurityContext: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
    								Value: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
    									Type: pulumi.String("multiValueConstant"),
    									MultiValueConstants: pulumi.StringArray{
    										pulumi.String("ACME1"),
    										pulumi.String("ACME2"),
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			Storage: &dynatrace.OpenpipelineV2BizeventsPipelinesStorageArgs{
    				Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs{
    							Type:        pulumi.String("bucketAssignment"),
    							Id:          pulumi.String("processor_Add_to_default_bucket_5010"),
    							Description: pulumi.String("Add to default bucket"),
    							Matcher:     pulumi.String("true"),
    							BucketAssignment: &dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
    								BucketName: pulumi.String("default_events"),
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Dynatrace = Pulumiverse.Dynatrace;
    
    return await Deployment.RunAsync(() => 
    {
        var max_pipeline = new Dynatrace.OpenpipelineV2BizeventsPipelines("max-pipeline", new()
        {
            DisplayName = "Warning pipeline",
            CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
            MetadataList = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetadataListArgs
            {
                Metadatas = new[]
                {
                    new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs
                    {
                        EntryKey = "environment",
                        EntryValue = "production",
                    },
                },
            },
            Processing = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "drop",
                            Id = "processor_Drop_unnecessary_records_3802",
                            Description = "Drop unnecessary records",
                            Matcher = "not matchesPhrase(record.name, \"Warning\")",
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "fieldsAdd",
                            Id = "processor_Add_warning_flag_5434",
                            Description = "Add warning flag",
                            Matcher = "matchesPhrase(record.name, \"Warning\")",
                            SampleData = @"{
      ""record.name"": ""Warning record"" 
    }",
                            FieldsAdd = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs
                            {
                                Fields = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
                                {
                                    Fields = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
                                        {
                                            Name = "is_warning",
                                            Value = "true",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "fieldsRemove",
                            Id = "processor_Remove_details_field_8539",
                            Description = "Remove details field",
                            SampleData = @"{
      ""record.name"": ""Warning"",
      ""record.details"": ""some record details""
    }",
                            Matcher = "isNotNull(record.details)",
                            FieldsRemove = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
                            {
                                Fields = new[]
                                {
                                    "record.details",
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "fieldsRename",
                            Id = "processor_Rename_name_to_title_8530",
                            Description = "Rename name to title",
                            SampleData = @"{
      ""record.name"": ""Warning""
    }",
                            Matcher = "true",
                            FieldsRename = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
                            {
                                Fields = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
                                {
                                    Fields = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
                                        {
                                            FromName = "record.name",
                                            ToName = "record.title",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "dql",
                            Id = "processor_Combine_title_and_summary_to_name_8808",
                            Description = "Combine title and summary to name",
                            SampleData = @"{
      ""record.title"": ""Warning"",
      ""record.summary"": ""Request failed""
    }",
                            Matcher = "true",
                            Dql = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs
                            {
                                Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            Davis = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs
                        {
                            Type = "davis",
                            Id = "processor_Create_warning_event_8226",
                            Description = "Create warning event",
                            Matcher = "true",
                            Davis = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs
                            {
                                Properties = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
                                {
                                    Properties = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
                                        {
                                            Key = "event.type",
                                            Value = "CUSTOM_ALERT",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
                                        {
                                            Key = "event.name",
                                            Value = "Warning detected",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
                                        {
                                            Key = "event.description",
                                            Value = "Warning: {dims:record.summary}",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs
                        {
                            Type = "counterMetric",
                            Id = "processor_Count_warning_events_6392",
                            Description = "Count warnings",
                            Matcher = "true",
                            CounterMetric = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
                            {
                                MetricKey = "warning.count",
                                Dimensions = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
                                {
                                    Dimensions = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.costcenter",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.product",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.security_context",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "record.category",
                                            DestinationFieldName = "warning_category",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs
                        {
                            Type = "valueMetric",
                            Id = "processor_Warning_timeout_1990",
                            Description = "Warning timeout",
                            Matcher = "true",
                            ValueMetric = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
                            {
                                MetricKey = "warning.timeout",
                                Field = "recording.timeout_in_min",
                                DefaultValue = "60",
                                Dimensions = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
                                {
                                    Dimensions = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.costcenter",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.product",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.security_context",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "record.category",
                                            DestinationFieldName = "warning_category",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            SecurityContext = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs
                        {
                            Type = "securityContext",
                            Id = "processor_Use_dt.security_context_if_set_1080",
                            Description = "Use dt.security_context if set",
                            Matcher = "isNotNull(dt.security_context)",
                            SecurityContext = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
                            {
                                Value = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
                                {
                                    Type = "field",
                                    Field = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
                                    {
                                        SourceFieldName = "dt.security_context",
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs
                        {
                            Type = "securityContext",
                            Id = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
                            Description = "Assign warnings to ACME teams if no context set",
                            Matcher = "isNull(dt.security_context)",
                            SecurityContext = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
                            {
                                Value = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
                                {
                                    Type = "multiValueConstant",
                                    MultiValueConstants = new[]
                                    {
                                        "ACME1",
                                        "ACME2",
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            Storage = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs
                        {
                            Type = "bucketAssignment",
                            Id = "processor_Add_to_default_bucket_5010",
                            Description = "Add to default bucket",
                            Matcher = "true",
                            BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
                            {
                                BucketName = "default_events",
                            },
                            Enabled = true,
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.OpenpipelineV2BizeventsPipelines;
    import com.pulumi.dynatrace.OpenpipelineV2BizeventsPipelinesArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetadataListArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var max_pipeline = new OpenpipelineV2BizeventsPipelines("max-pipeline", OpenpipelineV2BizeventsPipelinesArgs.builder()
                .displayName("Warning pipeline")
                .customId("pipeline_Warning_pipeline_2773_tf_#name#")
                .metadataList(OpenpipelineV2BizeventsPipelinesMetadataListArgs.builder()
                    .metadatas(OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs.builder()
                        .entryKey("environment")
                        .entryValue("production")
                        .build())
                    .build())
                .processing(OpenpipelineV2BizeventsPipelinesProcessingArgs.builder()
                    .processors(OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("drop")
                                .id("processor_Drop_unnecessary_records_3802")
                                .description("Drop unnecessary records")
                                .matcher("not matchesPhrase(record.name, \"Warning\")")
                                .enabled(true)
                                .build(),
                            OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("fieldsAdd")
                                .id("processor_Add_warning_flag_5434")
                                .description("Add warning flag")
                                .matcher("matchesPhrase(record.name, \"Warning\")")
                                .sampleData("""
    {
      "record.name": "Warning record" 
    }                            """)
                                .fieldsAdd(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
                                    .fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
                                        .fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
                                            .name("is_warning")
                                            .value("true")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("fieldsRemove")
                                .id("processor_Remove_details_field_8539")
                                .description("Remove details field")
                                .sampleData("""
    {
      "record.name": "Warning",
      "record.details": "some record details"
    }                            """)
                                .matcher("isNotNull(record.details)")
                                .fieldsRemove(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
                                    .fields("record.details")
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("fieldsRename")
                                .id("processor_Rename_name_to_title_8530")
                                .description("Rename name to title")
                                .sampleData("""
    {
      "record.name": "Warning"
    }                            """)
                                .matcher("true")
                                .fieldsRename(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
                                    .fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
                                        .fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
                                            .fromName("record.name")
                                            .toName("record.title")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("dql")
                                .id("processor_Combine_title_and_summary_to_name_8808")
                                .description("Combine title and summary to name")
                                .sampleData("""
    {
      "record.title": "Warning",
      "record.summary": "Request failed"
    }                            """)
                                .matcher("true")
                                .dql(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs.builder()
                                    .script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .davis(OpenpipelineV2BizeventsPipelinesDavisArgs.builder()
                    .processors(OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs.builder()
                        .processors(OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs.builder()
                            .type("davis")
                            .id("processor_Create_warning_event_8226")
                            .description("Create warning event")
                            .matcher("true")
                            .davis(OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs.builder()
                                .properties(OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs.builder()
                                    .properties(                                
                                        OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                            .key("event.type")
                                            .value("CUSTOM_ALERT")
                                            .build(),
                                        OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                            .key("event.name")
                                            .value("Warning detected")
                                            .build(),
                                        OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                            .key("event.description")
                                            .value("Warning: {dims:record.summary}")
                                            .build())
                                    .build())
                                .build())
                            .enabled(true)
                            .build())
                        .build())
                    .build())
                .metricExtraction(OpenpipelineV2BizeventsPipelinesMetricExtractionArgs.builder()
                    .processors(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
                                .type("counterMetric")
                                .id("processor_Count_warning_events_6392")
                                .description("Count warnings")
                                .matcher("true")
                                .counterMetric(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
                                    .metricKey("warning.count")
                                    .dimensions(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
                                        .dimensions(                                    
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.costcenter")
                                                .build(),
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.product")
                                                .build(),
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.security_context")
                                                .build(),
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("record.category")
                                                .destinationFieldName("warning_category")
                                                .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
                                .type("valueMetric")
                                .id("processor_Warning_timeout_1990")
                                .description("Warning timeout")
                                .matcher("true")
                                .valueMetric(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
                                    .metricKey("warning.timeout")
                                    .field("recording.timeout_in_min")
                                    .defaultValue("60")
                                    .dimensions(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
                                        .dimensions(                                    
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.costcenter")
                                                .build(),
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.product")
                                                .build(),
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.security_context")
                                                .build(),
                                            OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("record.category")
                                                .destinationFieldName("warning_category")
                                                .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .securityContext(OpenpipelineV2BizeventsPipelinesSecurityContextArgs.builder()
                    .processors(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs.builder()
                                .type("securityContext")
                                .id("processor_Use_dt.security_context_if_set_1080")
                                .description("Use dt.security_context if set")
                                .matcher("isNotNull(dt.security_context)")
                                .securityContext(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
                                    .value(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
                                        .type("field")
                                        .field(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
                                            .sourceFieldName("dt.security_context")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs.builder()
                                .type("securityContext")
                                .id("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465")
                                .description("Assign warnings to ACME teams if no context set")
                                .matcher("isNull(dt.security_context)")
                                .securityContext(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
                                    .value(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
                                        .type("multiValueConstant")
                                        .multiValueConstants(                                    
                                            "ACME1",
                                            "ACME2")
                                        .build())
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .storage(OpenpipelineV2BizeventsPipelinesStorageArgs.builder()
                    .processors(OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs.builder()
                        .processors(OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs.builder()
                            .type("bucketAssignment")
                            .id("processor_Add_to_default_bucket_5010")
                            .description("Add to default bucket")
                            .matcher("true")
                            .bucketAssignment(OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
                                .bucketName("default_events")
                                .build())
                            .enabled(true)
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      max-pipeline:
        type: dynatrace:OpenpipelineV2BizeventsPipelines
        properties:
          displayName: Warning pipeline
          customId: pipeline_Warning_pipeline_2773_tf_#name#
          metadataList:
            metadatas:
              - entryKey: environment
                entryValue: production
          processing:
            processors:
              processors:
                - type: drop
                  id: processor_Drop_unnecessary_records_3802
                  description: Drop unnecessary records
                  matcher: not matchesPhrase(record.name, "Warning")
                  enabled: true
                - type: fieldsAdd
                  id: processor_Add_warning_flag_5434
                  description: Add warning flag
                  matcher: matchesPhrase(record.name, "Warning")
                  sampleData: "{\n  \"record.name\": \"Warning record\" \n}"
                  fieldsAdd:
                    fields:
                      fields:
                        - name: is_warning
                          value: 'true'
                  enabled: true
                - type: fieldsRemove
                  id: processor_Remove_details_field_8539
                  description: Remove details field
                  sampleData: |-
                    {
                      "record.name": "Warning",
                      "record.details": "some record details"
                    }
                  matcher: isNotNull(record.details)
                  fieldsRemove:
                    fields:
                      - record.details
                  enabled: true
                - type: fieldsRename
                  id: processor_Rename_name_to_title_8530
                  description: Rename name to title
                  sampleData: |-
                    {
                      "record.name": "Warning"
                    }
                  matcher: 'true'
                  fieldsRename:
                    fields:
                      fields:
                        - fromName: record.name
                          toName: record.title
                  enabled: true
                - type: dql
                  id: processor_Combine_title_and_summary_to_name_8808
                  description: Combine title and summary to name
                  sampleData: |-
                    {
                      "record.title": "Warning",
                      "record.summary": "Request failed"
                    }
                  matcher: 'true'
                  dql:
                    script: fieldsAdd record.name = concat(record.title, " - ", record.summary)
                  enabled: true
          davis:
            processors:
              processors:
                - type: davis
                  id: processor_Create_warning_event_8226
                  description: Create warning event
                  matcher: 'true'
                  davis:
                    properties:
                      properties:
                        - key: event.type
                          value: CUSTOM_ALERT
                        - key: event.name
                          value: Warning detected
                        - key: event.description
                          value: 'Warning: {dims:record.summary}'
                  enabled: true
          metricExtraction:
            processors:
              processors:
                - type: counterMetric
                  id: processor_Count_warning_events_6392
                  description: Count warnings
                  matcher: 'true'
                  counterMetric:
                    metricKey: warning.count
                    dimensions:
                      dimensions:
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: dt.cost.costcenter
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: dt.cost.product
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: dt.security_context
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: record.category
                          destinationFieldName: warning_category
                  enabled: true
                - type: valueMetric
                  id: processor_Warning_timeout_1990
                  description: Warning timeout
                  matcher: 'true'
                  valueMetric:
                    metricKey: warning.timeout
                    field: recording.timeout_in_min
                    defaultValue: 60
                    dimensions:
                      dimensions:
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: dt.cost.costcenter
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: dt.cost.product
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: dt.security_context
                        - extractionType: field
                          strategy: equals
                          sourceFieldName: record.category
                          destinationFieldName: warning_category
                  enabled: true
          securityContext:
            processors:
              processors:
                - type: securityContext
                  id: processor_Use_dt.security_context_if_set_1080
                  description: Use dt.security_context if set
                  matcher: isNotNull(dt.security_context)
                  securityContext:
                    value:
                      type: field
                      field:
                        sourceFieldName: dt.security_context
                  enabled: true
                - type: securityContext
                  id: processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465
                  description: Assign warnings to ACME teams if no context set
                  matcher: isNull(dt.security_context)
                  securityContext:
                    value:
                      type: multiValueConstant
                      multiValueConstants:
                        - ACME1
                        - ACME2
                  enabled: true
          storage:
            processors:
              processors:
                - type: bucketAssignment
                  id: processor_Add_to_default_bucket_5010
                  description: Add to default bucket
                  matcher: 'true'
                  bucketAssignment:
                    bucketName: default_events
                  enabled: true
    
    pulumi {
      required_providers {
        dynatrace = {
          source = "pulumi/dynatrace"
        }
      }
    }
    
    resource "dynatrace_openpipelinev2bizeventspipelines" "max-pipeline" {
      display_name = "Warning pipeline"
      custom_id    = "pipeline_Warning_pipeline_2773_tf_#name#"
      metadata_list = {
        metadatas = [{
          "entryKey"   = "environment"
          "entryValue" = "production"
        }]
      }
      processing = {
        processors = {
          processors = [{
            "type"        = "drop"
            "id"          = "processor_Drop_unnecessary_records_3802"
            "description" = "Drop unnecessary records"
            "matcher"     = "not matchesPhrase(record.name, \"Warning\")"
            "enabled"     = true
            }, {
            "type"        = "fieldsAdd"
            "id"          = "processor_Add_warning_flag_5434"
            "description" = "Add warning flag"
            "matcher"     = "matchesPhrase(record.name, \"Warning\")"
            "sampleData"  = "{\n  \"record.name\": \"Warning record\" \n}"
            "fieldsAdd" = {
              "fields" = {
                "fields" = [{
                  "name"  = "is_warning"
                  "value" = "true"
                }]
              }
            }
            "enabled" = true
            }, {
            "type"        = "fieldsRemove"
            "id"          = "processor_Remove_details_field_8539"
            "description" = "Remove details field"
            "sampleData"  = "{\n  \"record.name\": \"Warning\",\n  \"record.details\": \"some record details\"\n}"
            "matcher"     = "isNotNull(record.details)"
            "fieldsRemove" = {
              "fields" = ["record.details"]
            }
            "enabled" = true
            }, {
            "type"        = "fieldsRename"
            "id"          = "processor_Rename_name_to_title_8530"
            "description" = "Rename name to title"
            "sampleData"  = "{\n  \"record.name\": \"Warning\"\n}"
            "matcher"     = "true"
            "fieldsRename" = {
              "fields" = {
                "fields" = [{
                  "fromName" = "record.name"
                  "toName"   = "record.title"
                }]
              }
            }
            "enabled" = true
            }, {
            "type"        = "dql"
            "id"          = "processor_Combine_title_and_summary_to_name_8808"
            "description" = "Combine title and summary to name"
            "sampleData"  = "{\n  \"record.title\": \"Warning\",\n  \"record.summary\": \"Request failed\"\n}"
            "matcher"     = "true"
            "dql" = {
              "script" = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)"
            }
            "enabled" = true
          }]
        }
      }
      davis = {
        processors = {
          processors = [{
            "type"        = "davis"
            "id"          = "processor_Create_warning_event_8226"
            "description" = "Create warning event"
            "matcher"     = "true"
            "davis" = {
              "properties" = {
                "properties" = [{
                  "key"   = "event.type"
                  "value" = "CUSTOM_ALERT"
                  }, {
                  "key"   = "event.name"
                  "value" = "Warning detected"
                  }, {
                  "key"   = "event.description"
                  "value" = "Warning: {dims:record.summary}"
                }]
              }
            }
            "enabled" = true
          }]
        }
      }
      metric_extraction = {
        processors = {
          processors = [{
            "type"        = "counterMetric"
            "id"          = "processor_Count_warning_events_6392"
            "description" = "Count warnings"
            "matcher"     = "true"
            "counterMetric" = {
              "metricKey" = "warning.count"
              "dimensions" = {
                "dimensions" = [{
                  "extractionType"  = "field"
                  "strategy"        = "equals"
                  "sourceFieldName" = "dt.cost.costcenter"
                  }, {
                  "extractionType"  = "field"
                  "strategy"        = "equals"
                  "sourceFieldName" = "dt.cost.product"
                  }, {
                  "extractionType"  = "field"
                  "strategy"        = "equals"
                  "sourceFieldName" = "dt.security_context"
                  }, {
                  "extractionType"       = "field"
                  "strategy"             = "equals"
                  "sourceFieldName"      = "record.category"
                  "destinationFieldName" = "warning_category"
                }]
              }
            }
            "enabled" = true
            }, {
            "type"        = "valueMetric"
            "id"          = "processor_Warning_timeout_1990"
            "description" = "Warning timeout"
            "matcher"     = "true"
            "valueMetric" = {
              "metricKey"    = "warning.timeout"
              "field"        = "recording.timeout_in_min"
              "defaultValue" = 60
              "dimensions" = {
                "dimensions" = [{
                  "extractionType"  = "field"
                  "strategy"        = "equals"
                  "sourceFieldName" = "dt.cost.costcenter"
                  }, {
                  "extractionType"  = "field"
                  "strategy"        = "equals"
                  "sourceFieldName" = "dt.cost.product"
                  }, {
                  "extractionType"  = "field"
                  "strategy"        = "equals"
                  "sourceFieldName" = "dt.security_context"
                  }, {
                  "extractionType"       = "field"
                  "strategy"             = "equals"
                  "sourceFieldName"      = "record.category"
                  "destinationFieldName" = "warning_category"
                }]
              }
            }
            "enabled" = true
          }]
        }
      }
      security_context = {
        processors = {
          processors = [{
            "type"        = "securityContext"
            "id"          = "processor_Use_dt.security_context_if_set_1080"
            "description" = "Use dt.security_context if set"
            "matcher"     = "isNotNull(dt.security_context)"
            "securityContext" = {
              "value" = {
                "type" = "field"
                "field" = {
                  "sourceFieldName" = "dt.security_context"
                }
              }
            }
            "enabled" = true
            }, {
            "type"        = "securityContext"
            "id"          = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"
            "description" = "Assign warnings to ACME teams if no context set"
            "matcher"     = "isNull(dt.security_context)"
            "securityContext" = {
              "value" = {
                "type"                = "multiValueConstant"
                "multiValueConstants" = ["ACME1", "ACME2"]
              }
            }
            "enabled" = true
          }]
        }
      }
      storage = {
        processors = {
          processors = [{
            "type"        = "bucketAssignment"
            "id"          = "processor_Add_to_default_bucket_5010"
            "description" = "Add to default bucket"
            "matcher"     = "true"
            "bucketAssignment" = {
              "bucketName" = "default_events"
            }
            "enabled" = true
          }]
        }
      }
    }
    

    Create OpenpipelineV2BizeventsPipelines Resource

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

    Constructor syntax

    new OpenpipelineV2BizeventsPipelines(name: string, args: OpenpipelineV2BizeventsPipelinesArgs, opts?: CustomResourceOptions);
    @overload
    def OpenpipelineV2BizeventsPipelines(resource_name: str,
                                         args: OpenpipelineV2BizeventsPipelinesArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenpipelineV2BizeventsPipelines(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         display_name: Optional[str] = None,
                                         custom_id: Optional[str] = None,
                                         metadata_list: Optional[OpenpipelineV2BizeventsPipelinesMetadataListArgs] = None,
                                         davis: Optional[OpenpipelineV2BizeventsPipelinesDavisArgs] = None,
                                         data_extraction: Optional[OpenpipelineV2BizeventsPipelinesDataExtractionArgs] = None,
                                         group_role: Optional[str] = None,
                                         cost_allocation: Optional[OpenpipelineV2BizeventsPipelinesCostAllocationArgs] = None,
                                         metric_extraction: Optional[OpenpipelineV2BizeventsPipelinesMetricExtractionArgs] = None,
                                         processing: Optional[OpenpipelineV2BizeventsPipelinesProcessingArgs] = None,
                                         product_allocation: Optional[OpenpipelineV2BizeventsPipelinesProductAllocationArgs] = None,
                                         routing: Optional[str] = None,
                                         security_context: Optional[OpenpipelineV2BizeventsPipelinesSecurityContextArgs] = None,
                                         smartscape_edge_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs] = None,
                                         smartscape_node_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs] = None,
                                         storage: Optional[OpenpipelineV2BizeventsPipelinesStorageArgs] = None)
    func NewOpenpipelineV2BizeventsPipelines(ctx *Context, name string, args OpenpipelineV2BizeventsPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2BizeventsPipelines, error)
    public OpenpipelineV2BizeventsPipelines(string name, OpenpipelineV2BizeventsPipelinesArgs args, CustomResourceOptions? opts = null)
    public OpenpipelineV2BizeventsPipelines(String name, OpenpipelineV2BizeventsPipelinesArgs args)
    public OpenpipelineV2BizeventsPipelines(String name, OpenpipelineV2BizeventsPipelinesArgs args, CustomResourceOptions options)
    
    type: dynatrace:OpenpipelineV2BizeventsPipelines
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "dynatrace_openpipeline_v2_bizevents_pipelines" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args OpenpipelineV2BizeventsPipelinesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args OpenpipelineV2BizeventsPipelinesArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args OpenpipelineV2BizeventsPipelinesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OpenpipelineV2BizeventsPipelinesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OpenpipelineV2BizeventsPipelinesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    OpenpipelineV2BizeventsPipelines Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The OpenpipelineV2BizeventsPipelines resource accepts the following input properties:

    CustomId string
    Custom pipeline id
    DisplayName string
    Display name
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocation
    Cost allocation stage
    DataExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtraction
    Data extraction stage
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavis
    Davis event extraction stage
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetadataList
    Pipeline metadata list
    MetricExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtraction
    Metrics extraction stage
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessing
    Processing stage
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocation
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContext
    Security context stage
    SmartscapeEdgeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    SmartscapeNodeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    Storage Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorage
    Storage stage
    CustomId string
    Custom pipeline id
    DisplayName string
    Display name
    CostAllocation OpenpipelineV2BizeventsPipelinesCostAllocationArgs
    Cost allocation stage
    DataExtraction OpenpipelineV2BizeventsPipelinesDataExtractionArgs
    Data extraction stage
    Davis OpenpipelineV2BizeventsPipelinesDavisArgs
    Davis event extraction stage
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList OpenpipelineV2BizeventsPipelinesMetadataListArgs
    Pipeline metadata list
    MetricExtraction OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    Processing OpenpipelineV2BizeventsPipelinesProcessingArgs
    Processing stage
    ProductAllocation OpenpipelineV2BizeventsPipelinesProductAllocationArgs
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext OpenpipelineV2BizeventsPipelinesSecurityContextArgs
    Security context stage
    SmartscapeEdgeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    SmartscapeNodeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    Storage OpenpipelineV2BizeventsPipelinesStorageArgs
    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 OpenpipelineV2BizeventsPipelinesCostAllocation
    Cost allocation stage
    dataExtraction OpenpipelineV2BizeventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2BizeventsPipelinesDavis
    Davis event extraction stage
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2BizeventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2BizeventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2BizeventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2BizeventsPipelinesProductAllocation
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2BizeventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2BizeventsPipelinesStorage
    Storage stage
    customId string
    Custom pipeline id
    displayName string
    Display name
    costAllocation OpenpipelineV2BizeventsPipelinesCostAllocation
    Cost allocation stage
    dataExtraction OpenpipelineV2BizeventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2BizeventsPipelinesDavis
    Davis event extraction stage
    groupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2BizeventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2BizeventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2BizeventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2BizeventsPipelinesProductAllocation
    Product allocation stage
    routing string
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2BizeventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2BizeventsPipelinesStorage
    Storage stage
    custom_id str
    Custom pipeline id
    display_name str
    Display name
    cost_allocation OpenpipelineV2BizeventsPipelinesCostAllocationArgs
    Cost allocation stage
    data_extraction OpenpipelineV2BizeventsPipelinesDataExtractionArgs
    Data extraction stage
    davis OpenpipelineV2BizeventsPipelinesDavisArgs
    Davis event extraction stage
    group_role str
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadata_list OpenpipelineV2BizeventsPipelinesMetadataListArgs
    Pipeline metadata list
    metric_extraction OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    processing OpenpipelineV2BizeventsPipelinesProcessingArgs
    Processing stage
    product_allocation OpenpipelineV2BizeventsPipelinesProductAllocationArgs
    Product allocation stage
    routing str
    Routing. Possible values: notRoutable, routable
    security_context OpenpipelineV2BizeventsPipelinesSecurityContextArgs
    Security context stage
    smartscape_edge_extraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    smartscape_node_extraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    storage OpenpipelineV2BizeventsPipelinesStorageArgs
    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 OpenpipelineV2BizeventsPipelines resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing OpenpipelineV2BizeventsPipelines Resource

    Get an existing OpenpipelineV2BizeventsPipelines resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: OpenpipelineV2BizeventsPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2BizeventsPipelines
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cost_allocation: Optional[OpenpipelineV2BizeventsPipelinesCostAllocationArgs] = None,
            custom_id: Optional[str] = None,
            data_extraction: Optional[OpenpipelineV2BizeventsPipelinesDataExtractionArgs] = None,
            davis: Optional[OpenpipelineV2BizeventsPipelinesDavisArgs] = None,
            display_name: Optional[str] = None,
            group_role: Optional[str] = None,
            metadata_list: Optional[OpenpipelineV2BizeventsPipelinesMetadataListArgs] = None,
            metric_extraction: Optional[OpenpipelineV2BizeventsPipelinesMetricExtractionArgs] = None,
            processing: Optional[OpenpipelineV2BizeventsPipelinesProcessingArgs] = None,
            product_allocation: Optional[OpenpipelineV2BizeventsPipelinesProductAllocationArgs] = None,
            routing: Optional[str] = None,
            security_context: Optional[OpenpipelineV2BizeventsPipelinesSecurityContextArgs] = None,
            smartscape_edge_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs] = None,
            smartscape_node_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs] = None,
            storage: Optional[OpenpipelineV2BizeventsPipelinesStorageArgs] = None) -> OpenpipelineV2BizeventsPipelines
    func GetOpenpipelineV2BizeventsPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2BizeventsPipelinesState, opts ...ResourceOption) (*OpenpipelineV2BizeventsPipelines, error)
    public static OpenpipelineV2BizeventsPipelines Get(string name, Input<string> id, OpenpipelineV2BizeventsPipelinesState? state, CustomResourceOptions? opts = null)
    public static OpenpipelineV2BizeventsPipelines get(String name, Output<String> id, OpenpipelineV2BizeventsPipelinesState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:OpenpipelineV2BizeventsPipelines    get:      id: ${id}
    import {
      to = dynatrace_openpipeline_v2_bizevents_pipelines.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocation
    Cost allocation stage
    CustomId string
    Custom pipeline id
    DataExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtraction
    Data extraction stage
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavis
    Davis event extraction stage
    DisplayName string
    Display name
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetadataList
    Pipeline metadata list
    MetricExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtraction
    Metrics extraction stage
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessing
    Processing stage
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocation
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContext
    Security context stage
    SmartscapeEdgeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    SmartscapeNodeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    Storage Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorage
    Storage stage
    CostAllocation OpenpipelineV2BizeventsPipelinesCostAllocationArgs
    Cost allocation stage
    CustomId string
    Custom pipeline id
    DataExtraction OpenpipelineV2BizeventsPipelinesDataExtractionArgs
    Data extraction stage
    Davis OpenpipelineV2BizeventsPipelinesDavisArgs
    Davis event extraction stage
    DisplayName string
    Display name
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList OpenpipelineV2BizeventsPipelinesMetadataListArgs
    Pipeline metadata list
    MetricExtraction OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    Processing OpenpipelineV2BizeventsPipelinesProcessingArgs
    Processing stage
    ProductAllocation OpenpipelineV2BizeventsPipelinesProductAllocationArgs
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext OpenpipelineV2BizeventsPipelinesSecurityContextArgs
    Security context stage
    SmartscapeEdgeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    SmartscapeNodeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    Storage OpenpipelineV2BizeventsPipelinesStorageArgs
    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 OpenpipelineV2BizeventsPipelinesCostAllocation
    Cost allocation stage
    customId String
    Custom pipeline id
    dataExtraction OpenpipelineV2BizeventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2BizeventsPipelinesDavis
    Davis event extraction stage
    displayName String
    Display name
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2BizeventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2BizeventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2BizeventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2BizeventsPipelinesProductAllocation
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2BizeventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2BizeventsPipelinesStorage
    Storage stage
    costAllocation OpenpipelineV2BizeventsPipelinesCostAllocation
    Cost allocation stage
    customId string
    Custom pipeline id
    dataExtraction OpenpipelineV2BizeventsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2BizeventsPipelinesDavis
    Davis event extraction stage
    displayName string
    Display name
    groupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2BizeventsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2BizeventsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2BizeventsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2BizeventsPipelinesProductAllocation
    Product allocation stage
    routing string
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2BizeventsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2BizeventsPipelinesStorage
    Storage stage
    cost_allocation OpenpipelineV2BizeventsPipelinesCostAllocationArgs
    Cost allocation stage
    custom_id str
    Custom pipeline id
    data_extraction OpenpipelineV2BizeventsPipelinesDataExtractionArgs
    Data extraction stage
    davis OpenpipelineV2BizeventsPipelinesDavisArgs
    Davis event extraction stage
    display_name str
    Display name
    group_role str
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadata_list OpenpipelineV2BizeventsPipelinesMetadataListArgs
    Pipeline metadata list
    metric_extraction OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
    Metrics extraction stage
    processing OpenpipelineV2BizeventsPipelinesProcessingArgs
    Processing stage
    product_allocation OpenpipelineV2BizeventsPipelinesProductAllocationArgs
    Product allocation stage
    routing str
    Routing. Possible values: notRoutable, routable
    security_context OpenpipelineV2BizeventsPipelinesSecurityContextArgs
    Security context stage
    smartscape_edge_extraction OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    smartscape_node_extraction OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    storage OpenpipelineV2BizeventsPipelinesStorageArgs
    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

    OpenpipelineV2BizeventsPipelinesCostAllocation, OpenpipelineV2BizeventsPipelinesCostAllocationArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessors, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorArgs

    Description string
    No documentation available
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Id string
    Processor identifier
    Type string
    Processor type. Possible values: azureLogForwarding, bizevent, bucketAssignment, costAllocation, counterMetric, davis, dql, drop, fieldsAdd, fieldsRemove, fieldsRename, geoLookup, histogramMetric, inlineLookup, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDqlArgs

    Script string
    DQL script
    Script string
    DQL script
    script string
    DQL script
    script String
    DQL script
    script string
    DQL script
    script str
    DQL script
    script String
    DQL script

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs

    Fields List<string>
    Fields to remove
    Fields []string
    Fields to remove
    fields list(string)
    Fields to remove
    fields List<String>
    Fields to remove
    fields string[]
    Fields to remove
    fields Sequence[str]
    Fields to remove
    fields List<String>
    Fields to remove

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs

    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.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs

    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.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField
    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessors, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorArgs

    Description string
    No documentation available
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Id string
    Processor identifier
    Type string
    Processor type. Possible values: azureLogForwarding, bizevent, bucketAssignment, costAllocation, counterMetric, davis, dql, drop, fieldsAdd, fieldsRemove, fieldsRename, geoLookup, histogramMetric, inlineLookup, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDqlArgs

    Script string
    DQL script
    Script string
    DQL script
    script string
    DQL script
    script String
    DQL script
    script string
    DQL script
    script str
    DQL script
    script String
    DQL script

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs

    Fields List<string>
    Fields to remove
    Fields []string
    Fields to remove
    fields list(string)
    Fields to remove
    fields List<String>
    Fields to remove
    fields string[]
    Fields to remove
    fields Sequence[str]
    Fields to remove
    fields List<String>
    Fields to remove

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

    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.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs

    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.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavis, OpenpipelineV2BizeventsPipelinesDavisArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2BizeventsPipelinesDavisProcessors, OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessor, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs

    Description string
    No documentation available
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Id string
    Processor identifier
    Type string
    Processor type. Possible values: azureLogForwarding, bizevent, bucketAssignment, costAllocation, counterMetric, davis, dql, drop, fieldsAdd, fieldsRemove, fieldsRename, geoLookup, histogramMetric, inlineLookup, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDqlArgs

    Script string
    DQL script
    Script string
    DQL script
    script string
    DQL script
    script String
    DQL script
    script string
    DQL script
    script str
    DQL script
    script String
    DQL script

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemoveArgs

    Fields List<string>
    Fields to remove
    Fields []string
    Fields to remove
    fields list(string)
    Fields to remove
    fields List<String>
    Fields to remove
    fields string[]
    Fields to remove
    fields Sequence[str]
    Fields to remove
    fields List<String>
    Fields to remove

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs

    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.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs

    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.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField
    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetadataList, OpenpipelineV2BizeventsPipelinesMetadataListArgs

    OpenpipelineV2BizeventsPipelinesMetadataListMetadata, OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessors, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs

    Description string
    No documentation available
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Id string
    Processor identifier
    Type string
    Processor type. Possible values: azureLogForwarding, bizevent, bucketAssignment, costAllocation, counterMetric, davis, dql, drop, fieldsAdd, fieldsRemove, fieldsRename, geoLookup, histogramMetric, inlineLookup, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDqlArgs

    Script string
    DQL script
    Script string
    DQL script
    script string
    DQL script
    script String
    DQL script
    script string
    DQL script
    script str
    DQL script
    script String
    DQL script

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs

    Fields List<string>
    Fields to remove
    Fields []string
    Fields to remove
    fields list(string)
    Fields to remove
    fields List<String>
    Fields to remove
    fields string[]
    Fields to remove
    fields Sequence[str]
    Fields to remove
    fields List<String>
    Fields to remove

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

    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.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs

    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.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField
    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessing, OpenpipelineV2BizeventsPipelinesProcessingArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2BizeventsPipelinesProcessingProcessors, OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessor, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs

    Description string
    No documentation available
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Id string
    Processor identifier
    Type string
    Processor type. Possible values: azureLogForwarding, bizevent, bucketAssignment, costAllocation, counterMetric, davis, dql, drop, fieldsAdd, fieldsRemove, fieldsRename, geoLookup, histogramMetric, inlineLookup, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs

    Script string
    DQL script
    Script string
    DQL script
    script string
    DQL script
    script String
    DQL script
    script string
    DQL script
    script str
    DQL script
    script String
    DQL script

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs

    Fields List<string>
    Fields to remove
    Fields []string
    Fields to remove
    fields list(string)
    Fields to remove
    fields List<String>
    Fields to remove
    fields string[]
    Fields to remove
    fields Sequence[str]
    Fields to remove
    fields List<String>
    Fields to remove

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs

    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.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs

    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.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes List<string>
    Fields
    Include Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    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 OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    Value from field
    multiValueConstants string[]
    Constant multi value
    type str
    Type of value assignment. Possible values: constant, field, multiValueConstant
    constant str
    Constant value
    field OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField
    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProductAllocation, OpenpipelineV2BizeventsPipelinesProductAllocationArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessors, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsArgs

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorArgs

    Description string
    No documentation available
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Id string
    Processor identifier
    Type string
    Processor type. Possible values: azureLogForwarding, bizevent, bucketAssignment, costAllocation, counterMetric, davis, dql, drop, fieldsAdd, fieldsRemove, fieldsRename, geoLookup, histogramMetric, inlineLookup, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorValueMetric
    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

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs

    Type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    Excludes []string
    Fields
    Include OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type string
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes string[]
    Fields
    include OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type str
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes Sequence[str]
    Fields
    include OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude
    Fields
    type String
    Fields Extraction type. Possible values: exclude, include, includeAll
    excludes List<String>
    Fields
    include Property Map
    Fields

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType 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

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventArgs

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

    OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs

    Type string
    Type of value assignment. Possible values: constant, field, multiValueConstant
    Constant string
    Constant value
    Field Pulumiverse.Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    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 OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField
    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