1. Registry
  2. Packages
  3. Dynatrace
  4. API Docs
  5. OpenpipelineV2UsersessionsPipelines
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.OpenpipelineV2UsersessionsPipelines downloads all existing OpenPipeline definitions for user sessions 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.OpenpipelineV2UsersessionsPipelines("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.OpenpipelineV2UsersessionsPipelines("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.NewOpenpipelineV2UsersessionsPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2UsersessionsPipelinesArgs{
    			DisplayName: pulumi.String("Warning pipeline"),
    			CustomId:    pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
    			MetadataList: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetadataListArgs{
    				Metadatas: dynatrace.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArray{
    					&dynatrace.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs{
    						EntryKey:   pulumi.String("environment"),
    						EntryValue: pulumi.String("production"),
    					},
    				},
    			},
    			Processing: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingArgs{
    				Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs{
    								Fields: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
    									Fields: dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
    											Name:  pulumi.String("is_warning"),
    											Value: pulumi.String("true"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
    								Fields: pulumi.StringArray{
    									pulumi.String("record.details"),
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
    								Fields: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
    									Fields: dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
    											FromName: pulumi.String("record.name"),
    											ToName:   pulumi.String("record.title"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs{
    								Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			Davis: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisArgs{
    				Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs{
    							Type:        pulumi.String("davis"),
    							Id:          pulumi.String("processor_Create_warning_event_8226"),
    							Description: pulumi.String("Create warning event"),
    							Matcher:     pulumi.String("true"),
    							Davis: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs{
    								Properties: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs{
    									Properties: dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArray{
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
    											Key:   pulumi.String("event.type"),
    											Value: pulumi.String("CUSTOM_ALERT"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
    											Key:   pulumi.String("event.name"),
    											Value: pulumi.String("Warning detected"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
    											Key:   pulumi.String("event.description"),
    											Value: pulumi.String("Warning: {dims:record.summary}"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			MetricExtraction: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs{
    				Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs{
    							Type:        pulumi.String("counterMetric"),
    							Id:          pulumi.String("processor_Count_warning_events_6392"),
    							Description: pulumi.String("Count warnings"),
    							Matcher:     pulumi.String("true"),
    							CounterMetric: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
    								MetricKey: pulumi.String("warning.count"),
    								Dimensions: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
    									Dimensions: dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.costcenter"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.product"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.security_context"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
    											ExtractionType:       pulumi.String("field"),
    											Strategy:             pulumi.String("equals"),
    											SourceFieldName:      pulumi.String("record.category"),
    											DestinationFieldName: pulumi.String("warning_category"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs{
    							Type:        pulumi.String("valueMetric"),
    							Id:          pulumi.String("processor_Warning_timeout_1990"),
    							Description: pulumi.String("Warning timeout"),
    							Matcher:     pulumi.String("true"),
    							ValueMetric: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
    								MetricKey:    pulumi.String("warning.timeout"),
    								Field:        pulumi.String("recording.timeout_in_min"),
    								DefaultValue: pulumi.String("60"),
    								Dimensions: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
    									Dimensions: dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.costcenter"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.cost.product"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:  pulumi.String("field"),
    											Strategy:        pulumi.String("equals"),
    											SourceFieldName: pulumi.String("dt.security_context"),
    										},
    										&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
    											ExtractionType:       pulumi.String("field"),
    											Strategy:             pulumi.String("equals"),
    											SourceFieldName:      pulumi.String("record.category"),
    											DestinationFieldName: pulumi.String("warning_category"),
    										},
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			SecurityContext: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextArgs{
    				Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
    								Value: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
    									Type: pulumi.String("field"),
    									Field: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
    										SourceFieldName: pulumi.String("dt.security_context"),
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
    								Value: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
    									Type: pulumi.String("multiValueConstant"),
    									MultiValueConstants: pulumi.StringArray{
    										pulumi.String("ACME1"),
    										pulumi.String("ACME2"),
    									},
    								},
    							},
    							Enabled: pulumi.Bool(true),
    						},
    					},
    				},
    			},
    			Storage: &dynatrace.OpenpipelineV2UsersessionsPipelinesStorageArgs{
    				Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs{
    					Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArray{
    						&dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs{
    							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.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
    								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.OpenpipelineV2UsersessionsPipelines("max-pipeline", new()
        {
            DisplayName = "Warning pipeline",
            CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
            MetadataList = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetadataListArgs
            {
                Metadatas = new[]
                {
                    new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs
                    {
                        EntryKey = "environment",
                        EntryValue = "production",
                    },
                },
            },
            Processing = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "drop",
                            Id = "processor_Drop_unnecessary_records_3802",
                            Description = "Drop unnecessary records",
                            Matcher = "not matchesPhrase(record.name, \"Warning\")",
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs
                            {
                                Fields = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
                                {
                                    Fields = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
                                        {
                                            Name = "is_warning",
                                            Value = "true",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
                            {
                                Fields = new[]
                                {
                                    "record.details",
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
                        {
                            Type = "fieldsRename",
                            Id = "processor_Rename_name_to_title_8530",
                            Description = "Rename name to title",
                            SampleData = @"{
      ""record.name"": ""Warning""
    }",
                            Matcher = "true",
                            FieldsRename = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
                            {
                                Fields = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
                                {
                                    Fields = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
                                        {
                                            FromName = "record.name",
                                            ToName = "record.title",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs
                            {
                                Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            Davis = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs
                        {
                            Type = "davis",
                            Id = "processor_Create_warning_event_8226",
                            Description = "Create warning event",
                            Matcher = "true",
                            Davis = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs
                            {
                                Properties = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
                                {
                                    Properties = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
                                        {
                                            Key = "event.type",
                                            Value = "CUSTOM_ALERT",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
                                        {
                                            Key = "event.name",
                                            Value = "Warning detected",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
                                        {
                                            Key = "event.description",
                                            Value = "Warning: {dims:record.summary}",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs
                        {
                            Type = "counterMetric",
                            Id = "processor_Count_warning_events_6392",
                            Description = "Count warnings",
                            Matcher = "true",
                            CounterMetric = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
                            {
                                MetricKey = "warning.count",
                                Dimensions = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
                                {
                                    Dimensions = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.costcenter",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.product",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.security_context",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "record.category",
                                            DestinationFieldName = "warning_category",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs
                        {
                            Type = "valueMetric",
                            Id = "processor_Warning_timeout_1990",
                            Description = "Warning timeout",
                            Matcher = "true",
                            ValueMetric = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
                            {
                                MetricKey = "warning.timeout",
                                Field = "recording.timeout_in_min",
                                DefaultValue = "60",
                                Dimensions = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
                                {
                                    Dimensions = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.costcenter",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.cost.product",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "dt.security_context",
                                        },
                                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
                                        {
                                            ExtractionType = "field",
                                            Strategy = "equals",
                                            SourceFieldName = "record.category",
                                            DestinationFieldName = "warning_category",
                                        },
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            SecurityContext = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
                            {
                                Value = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
                                {
                                    Type = "field",
                                    Field = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
                                    {
                                        SourceFieldName = "dt.security_context",
                                    },
                                },
                            },
                            Enabled = true,
                        },
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs
                        {
                            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.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
                            {
                                Value = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
                                {
                                    Type = "multiValueConstant",
                                    MultiValueConstants = new[]
                                    {
                                        "ACME1",
                                        "ACME2",
                                    },
                                },
                            },
                            Enabled = true,
                        },
                    },
                },
            },
            Storage = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageArgs
            {
                Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs
                {
                    Processors = new[]
                    {
                        new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs
                        {
                            Type = "bucketAssignment",
                            Id = "processor_Add_to_default_bucket_5010",
                            Description = "Add to default bucket",
                            Matcher = "true",
                            BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
                            {
                                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.OpenpipelineV2UsersessionsPipelines;
    import com.pulumi.dynatrace.OpenpipelineV2UsersessionsPipelinesArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetadataListArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
    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 OpenpipelineV2UsersessionsPipelines("max-pipeline", OpenpipelineV2UsersessionsPipelinesArgs.builder()
                .displayName("Warning pipeline")
                .customId("pipeline_Warning_pipeline_2773_tf_#name#")
                .metadataList(OpenpipelineV2UsersessionsPipelinesMetadataListArgs.builder()
                    .metadatas(OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs.builder()
                        .entryKey("environment")
                        .entryValue("production")
                        .build())
                    .build())
                .processing(OpenpipelineV2UsersessionsPipelinesProcessingArgs.builder()
                    .processors(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("drop")
                                .id("processor_Drop_unnecessary_records_3802")
                                .description("Drop unnecessary records")
                                .matcher("not matchesPhrase(record.name, \"Warning\")")
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("fieldsAdd")
                                .id("processor_Add_warning_flag_5434")
                                .description("Add warning flag")
                                .matcher("matchesPhrase(record.name, \"Warning\")")
                                .sampleData("""
    {
      "record.name": "Warning record" 
    }                            """)
                                .fieldsAdd(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
                                    .fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
                                        .fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
                                            .name("is_warning")
                                            .value("true")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.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(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
                                    .fields("record.details")
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
                                .type("fieldsRename")
                                .id("processor_Rename_name_to_title_8530")
                                .description("Rename name to title")
                                .sampleData("""
    {
      "record.name": "Warning"
    }                            """)
                                .matcher("true")
                                .fieldsRename(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
                                    .fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
                                        .fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
                                            .fromName("record.name")
                                            .toName("record.title")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.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(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs.builder()
                                    .script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .davis(OpenpipelineV2UsersessionsPipelinesDavisArgs.builder()
                    .processors(OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs.builder()
                        .processors(OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs.builder()
                            .type("davis")
                            .id("processor_Create_warning_event_8226")
                            .description("Create warning event")
                            .matcher("true")
                            .davis(OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs.builder()
                                .properties(OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs.builder()
                                    .properties(                                
                                        OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                            .key("event.type")
                                            .value("CUSTOM_ALERT")
                                            .build(),
                                        OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                            .key("event.name")
                                            .value("Warning detected")
                                            .build(),
                                        OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                            .key("event.description")
                                            .value("Warning: {dims:record.summary}")
                                            .build())
                                    .build())
                                .build())
                            .enabled(true)
                            .build())
                        .build())
                    .build())
                .metricExtraction(OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs.builder()
                    .processors(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
                                .type("counterMetric")
                                .id("processor_Count_warning_events_6392")
                                .description("Count warnings")
                                .matcher("true")
                                .counterMetric(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
                                    .metricKey("warning.count")
                                    .dimensions(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
                                        .dimensions(                                    
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.costcenter")
                                                .build(),
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.product")
                                                .build(),
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.security_context")
                                                .build(),
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("record.category")
                                                .destinationFieldName("warning_category")
                                                .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
                                .type("valueMetric")
                                .id("processor_Warning_timeout_1990")
                                .description("Warning timeout")
                                .matcher("true")
                                .valueMetric(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
                                    .metricKey("warning.timeout")
                                    .field("recording.timeout_in_min")
                                    .defaultValue("60")
                                    .dimensions(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
                                        .dimensions(                                    
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.costcenter")
                                                .build(),
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.cost.product")
                                                .build(),
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("dt.security_context")
                                                .build(),
                                            OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
                                                .extractionType("field")
                                                .strategy("equals")
                                                .sourceFieldName("record.category")
                                                .destinationFieldName("warning_category")
                                                .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .securityContext(OpenpipelineV2UsersessionsPipelinesSecurityContextArgs.builder()
                    .processors(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs.builder()
                        .processors(                    
                            OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
                                    .value(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
                                        .type("field")
                                        .field(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
                                            .sourceFieldName("dt.security_context")
                                            .build())
                                        .build())
                                    .build())
                                .enabled(true)
                                .build(),
                            OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
                                    .value(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
                                        .type("multiValueConstant")
                                        .multiValueConstants(                                    
                                            "ACME1",
                                            "ACME2")
                                        .build())
                                    .build())
                                .enabled(true)
                                .build())
                        .build())
                    .build())
                .storage(OpenpipelineV2UsersessionsPipelinesStorageArgs.builder()
                    .processors(OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs.builder()
                        .processors(OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs.builder()
                            .type("bucketAssignment")
                            .id("processor_Add_to_default_bucket_5010")
                            .description("Add to default bucket")
                            .matcher("true")
                            .bucketAssignment(OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
                                .bucketName("default_events")
                                .build())
                            .enabled(true)
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      max-pipeline:
        type: dynatrace:OpenpipelineV2UsersessionsPipelines
        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_openpipelinev2usersessionspipelines" "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 OpenpipelineV2UsersessionsPipelines Resource

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

    Constructor syntax

    new OpenpipelineV2UsersessionsPipelines(name: string, args: OpenpipelineV2UsersessionsPipelinesArgs, opts?: CustomResourceOptions);
    @overload
    def OpenpipelineV2UsersessionsPipelines(resource_name: str,
                                            args: OpenpipelineV2UsersessionsPipelinesArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenpipelineV2UsersessionsPipelines(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            display_name: Optional[str] = None,
                                            custom_id: Optional[str] = None,
                                            metadata_list: Optional[OpenpipelineV2UsersessionsPipelinesMetadataListArgs] = None,
                                            davis: Optional[OpenpipelineV2UsersessionsPipelinesDavisArgs] = None,
                                            data_extraction: Optional[OpenpipelineV2UsersessionsPipelinesDataExtractionArgs] = None,
                                            group_role: Optional[str] = None,
                                            cost_allocation: Optional[OpenpipelineV2UsersessionsPipelinesCostAllocationArgs] = None,
                                            metric_extraction: Optional[OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs] = None,
                                            processing: Optional[OpenpipelineV2UsersessionsPipelinesProcessingArgs] = None,
                                            product_allocation: Optional[OpenpipelineV2UsersessionsPipelinesProductAllocationArgs] = None,
                                            routing: Optional[str] = None,
                                            security_context: Optional[OpenpipelineV2UsersessionsPipelinesSecurityContextArgs] = None,
                                            smartscape_edge_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs] = None,
                                            smartscape_node_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs] = None,
                                            storage: Optional[OpenpipelineV2UsersessionsPipelinesStorageArgs] = None)
    func NewOpenpipelineV2UsersessionsPipelines(ctx *Context, name string, args OpenpipelineV2UsersessionsPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2UsersessionsPipelines, error)
    public OpenpipelineV2UsersessionsPipelines(string name, OpenpipelineV2UsersessionsPipelinesArgs args, CustomResourceOptions? opts = null)
    public OpenpipelineV2UsersessionsPipelines(String name, OpenpipelineV2UsersessionsPipelinesArgs args)
    public OpenpipelineV2UsersessionsPipelines(String name, OpenpipelineV2UsersessionsPipelinesArgs args, CustomResourceOptions options)
    
    type: dynatrace:OpenpipelineV2UsersessionsPipelines
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "dynatrace_openpipeline_v2_usersessions_pipelines" "name" {
        # resource properties
    }

    Parameters

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

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

    CustomId string
    Custom pipeline id
    DisplayName string
    Display name
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocation
    Cost allocation stage
    DataExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtraction
    Data extraction stage
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavis
    Davis event extraction stage
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetadataList
    Pipeline metadata list
    MetricExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtraction
    Metrics extraction stage
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessing
    Processing stage
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocation
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContext
    Security context stage
    SmartscapeEdgeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    SmartscapeNodeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    Storage Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorage
    Storage stage
    CustomId string
    Custom pipeline id
    DisplayName string
    Display name
    CostAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationArgs
    Cost allocation stage
    DataExtraction OpenpipelineV2UsersessionsPipelinesDataExtractionArgs
    Data extraction stage
    Davis OpenpipelineV2UsersessionsPipelinesDavisArgs
    Davis event extraction stage
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList OpenpipelineV2UsersessionsPipelinesMetadataListArgs
    Pipeline metadata list
    MetricExtraction OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
    Metrics extraction stage
    Processing OpenpipelineV2UsersessionsPipelinesProcessingArgs
    Processing stage
    ProductAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationArgs
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
    Security context stage
    SmartscapeEdgeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    SmartscapeNodeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    Storage OpenpipelineV2UsersessionsPipelinesStorageArgs
    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 OpenpipelineV2UsersessionsPipelinesCostAllocation
    Cost allocation stage
    dataExtraction OpenpipelineV2UsersessionsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UsersessionsPipelinesDavis
    Davis event extraction stage
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UsersessionsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UsersessionsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UsersessionsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UsersessionsPipelinesProductAllocation
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UsersessionsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UsersessionsPipelinesStorage
    Storage stage
    customId string
    Custom pipeline id
    displayName string
    Display name
    costAllocation OpenpipelineV2UsersessionsPipelinesCostAllocation
    Cost allocation stage
    dataExtraction OpenpipelineV2UsersessionsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UsersessionsPipelinesDavis
    Davis event extraction stage
    groupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UsersessionsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UsersessionsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UsersessionsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UsersessionsPipelinesProductAllocation
    Product allocation stage
    routing string
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UsersessionsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UsersessionsPipelinesStorage
    Storage stage
    custom_id str
    Custom pipeline id
    display_name str
    Display name
    cost_allocation OpenpipelineV2UsersessionsPipelinesCostAllocationArgs
    Cost allocation stage
    data_extraction OpenpipelineV2UsersessionsPipelinesDataExtractionArgs
    Data extraction stage
    davis OpenpipelineV2UsersessionsPipelinesDavisArgs
    Davis event extraction stage
    group_role str
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadata_list OpenpipelineV2UsersessionsPipelinesMetadataListArgs
    Pipeline metadata list
    metric_extraction OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
    Metrics extraction stage
    processing OpenpipelineV2UsersessionsPipelinesProcessingArgs
    Processing stage
    product_allocation OpenpipelineV2UsersessionsPipelinesProductAllocationArgs
    Product allocation stage
    routing str
    Routing. Possible values: notRoutable, routable
    security_context OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
    Security context stage
    smartscape_edge_extraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    smartscape_node_extraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    storage OpenpipelineV2UsersessionsPipelinesStorageArgs
    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 OpenpipelineV2UsersessionsPipelines 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 OpenpipelineV2UsersessionsPipelines Resource

    Get an existing OpenpipelineV2UsersessionsPipelines 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?: OpenpipelineV2UsersessionsPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2UsersessionsPipelines
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cost_allocation: Optional[OpenpipelineV2UsersessionsPipelinesCostAllocationArgs] = None,
            custom_id: Optional[str] = None,
            data_extraction: Optional[OpenpipelineV2UsersessionsPipelinesDataExtractionArgs] = None,
            davis: Optional[OpenpipelineV2UsersessionsPipelinesDavisArgs] = None,
            display_name: Optional[str] = None,
            group_role: Optional[str] = None,
            metadata_list: Optional[OpenpipelineV2UsersessionsPipelinesMetadataListArgs] = None,
            metric_extraction: Optional[OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs] = None,
            processing: Optional[OpenpipelineV2UsersessionsPipelinesProcessingArgs] = None,
            product_allocation: Optional[OpenpipelineV2UsersessionsPipelinesProductAllocationArgs] = None,
            routing: Optional[str] = None,
            security_context: Optional[OpenpipelineV2UsersessionsPipelinesSecurityContextArgs] = None,
            smartscape_edge_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs] = None,
            smartscape_node_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs] = None,
            storage: Optional[OpenpipelineV2UsersessionsPipelinesStorageArgs] = None) -> OpenpipelineV2UsersessionsPipelines
    func GetOpenpipelineV2UsersessionsPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2UsersessionsPipelinesState, opts ...ResourceOption) (*OpenpipelineV2UsersessionsPipelines, error)
    public static OpenpipelineV2UsersessionsPipelines Get(string name, Input<string> id, OpenpipelineV2UsersessionsPipelinesState? state, CustomResourceOptions? opts = null)
    public static OpenpipelineV2UsersessionsPipelines get(String name, Output<String> id, OpenpipelineV2UsersessionsPipelinesState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:OpenpipelineV2UsersessionsPipelines    get:      id: ${id}
    import {
      to = dynatrace_openpipeline_v2_usersessions_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.OpenpipelineV2UsersessionsPipelinesCostAllocation
    Cost allocation stage
    CustomId string
    Custom pipeline id
    DataExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtraction
    Data extraction stage
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavis
    Davis event extraction stage
    DisplayName string
    Display name
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetadataList
    Pipeline metadata list
    MetricExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtraction
    Metrics extraction stage
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessing
    Processing stage
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocation
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContext
    Security context stage
    SmartscapeEdgeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    SmartscapeNodeExtraction Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    Storage Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorage
    Storage stage
    CostAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationArgs
    Cost allocation stage
    CustomId string
    Custom pipeline id
    DataExtraction OpenpipelineV2UsersessionsPipelinesDataExtractionArgs
    Data extraction stage
    Davis OpenpipelineV2UsersessionsPipelinesDavisArgs
    Davis event extraction stage
    DisplayName string
    Display name
    GroupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    MetadataList OpenpipelineV2UsersessionsPipelinesMetadataListArgs
    Pipeline metadata list
    MetricExtraction OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
    Metrics extraction stage
    Processing OpenpipelineV2UsersessionsPipelinesProcessingArgs
    Processing stage
    ProductAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationArgs
    Product allocation stage
    Routing string
    Routing. Possible values: notRoutable, routable
    SecurityContext OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
    Security context stage
    SmartscapeEdgeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    SmartscapeNodeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    Storage OpenpipelineV2UsersessionsPipelinesStorageArgs
    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 OpenpipelineV2UsersessionsPipelinesCostAllocation
    Cost allocation stage
    customId String
    Custom pipeline id
    dataExtraction OpenpipelineV2UsersessionsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UsersessionsPipelinesDavis
    Davis event extraction stage
    displayName String
    Display name
    groupRole String
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UsersessionsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UsersessionsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UsersessionsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UsersessionsPipelinesProductAllocation
    Product allocation stage
    routing String
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UsersessionsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UsersessionsPipelinesStorage
    Storage stage
    costAllocation OpenpipelineV2UsersessionsPipelinesCostAllocation
    Cost allocation stage
    customId string
    Custom pipeline id
    dataExtraction OpenpipelineV2UsersessionsPipelinesDataExtraction
    Data extraction stage
    davis OpenpipelineV2UsersessionsPipelinesDavis
    Davis event extraction stage
    displayName string
    Display name
    groupRole string
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadataList OpenpipelineV2UsersessionsPipelinesMetadataList
    Pipeline metadata list
    metricExtraction OpenpipelineV2UsersessionsPipelinesMetricExtraction
    Metrics extraction stage
    processing OpenpipelineV2UsersessionsPipelinesProcessing
    Processing stage
    productAllocation OpenpipelineV2UsersessionsPipelinesProductAllocation
    Product allocation stage
    routing string
    Routing. Possible values: notRoutable, routable
    securityContext OpenpipelineV2UsersessionsPipelinesSecurityContext
    Security context stage
    smartscapeEdgeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction
    Smartscape edge extraction stage
    smartscapeNodeExtraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction
    Smartscape node extraction stage
    storage OpenpipelineV2UsersessionsPipelinesStorage
    Storage stage
    cost_allocation OpenpipelineV2UsersessionsPipelinesCostAllocationArgs
    Cost allocation stage
    custom_id str
    Custom pipeline id
    data_extraction OpenpipelineV2UsersessionsPipelinesDataExtractionArgs
    Data extraction stage
    davis OpenpipelineV2UsersessionsPipelinesDavisArgs
    Davis event extraction stage
    display_name str
    Display name
    group_role str
    Group role. Possible values: basePipeline, compositionPipeline, memberPipeline
    metadata_list OpenpipelineV2UsersessionsPipelinesMetadataListArgs
    Pipeline metadata list
    metric_extraction OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
    Metrics extraction stage
    processing OpenpipelineV2UsersessionsPipelinesProcessingArgs
    Processing stage
    product_allocation OpenpipelineV2UsersessionsPipelinesProductAllocationArgs
    Product allocation stage
    routing str
    Routing. Possible values: notRoutable, routable
    security_context OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
    Security context stage
    smartscape_edge_extraction OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs
    Smartscape edge extraction stage
    smartscape_node_extraction OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs
    Smartscape node extraction stage
    storage OpenpipelineV2UsersessionsPipelinesStorageArgs
    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

    OpenpipelineV2UsersessionsPipelinesCostAllocation, OpenpipelineV2UsersessionsPipelinesCostAllocationArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessors, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessors, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavis, OpenpipelineV2UsersessionsPipelinesDavisArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesDavisProcessors, OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetadataList, OpenpipelineV2UsersessionsPipelinesMetadataListArgs

    OpenpipelineV2UsersessionsPipelinesMetadataListMetadata, OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessors, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessing, OpenpipelineV2UsersessionsPipelinesProcessingArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesProcessingProcessors, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocation, OpenpipelineV2UsersessionsPipelinesProductAllocationArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessors, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContext, OpenpipelineV2UsersessionsPipelinesSecurityContextArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessors, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessors, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessors, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorage, OpenpipelineV2UsersessionsPipelinesStorageArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2UsersessionsPipelinesStorageProcessors, OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs

    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.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    InlineLookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inlineLookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric
    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 OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    inline_lookup OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup
    Inline lookup processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric
    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDqlArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookupArgs

    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.

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs

    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value extraction type. Possible values: constant, field
    SourceFieldName string
    Source field name
    Strategy string
    Strategy for field extraction. Possible values: equals, startsWith
    ConstantFieldName string
    Destination field name
    ConstantValue string
    Constant value to be assigned to field
    DefaultValue string
    Default value
    DestinationFieldName string
    Destination field name
    ExtractionType string
    Field value 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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimensionArgs

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

    Package Details

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

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial