1. Packages
  2. Packages
  3. Dynatrace
  4. API Docs
  5. OpenpipelineV2SystemEventsDataforwarding
Viewing docs for Dynatrace v0.37.1
published on Thursday, Jun 25, 2026 by Pulumiverse
dynatrace logo
Viewing docs for Dynatrace v0.37.1
published on Thursday, Jun 25, 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
    • Forwarding - https://docs.dynatrace.com/docs/platform/openpipeline/concepts/forwarding

    Export Example Usage

    • terraform-provider-dynatrace -export dynatrace.OpenpipelineV2SystemEventsDataforwarding downloads all existing OpenPipeline definitions for system events data forwarding

    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 pipeline = new dynatrace.OpenpipelineV2SystemEventsPipelines("pipeline", {
        displayName: "Minimal pipeline",
        customId: "pipeline_Minimal_pipeline_1234_tf_#name#",
    });
    const config = new pulumi.Config();
    // The service account that should be used for the GCP connection setup end-to-end test.
    const DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT = config.require("DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT");
    const connection = new dynatrace.GcpConnection("connection", {
        name: "#name#",
        type: "serviceAccountImpersonation",
        serviceAccountImpersonation: {
            serviceAccountId: DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT,
            consumers: ["SVC:com.dynatrace.openpipeline"],
        },
    });
    const example = new dynatrace.OpenpipelineV2SystemEventsDataforwarding("example", {
        forwardingName: "#name#",
        enabled: false,
        matcher: "true",
        cloudVendorType: "gcp",
        gcpConnection: {
            bucketName: "my-bucket",
            connectionId: connection.id,
        },
        dataForwardingType: "processed",
        pipelines: [pipeline.id],
        bulkPattern: "<YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz",
    });
    
    import pulumi
    import pulumiverse_dynatrace as dynatrace
    
    pipeline = dynatrace.OpenpipelineV2SystemEventsPipelines("pipeline",
        display_name="Minimal pipeline",
        custom_id="pipeline_Minimal_pipeline_1234_tf_#name#")
    config = pulumi.Config()
    # The service account that should be used for the GCP connection setup end-to-end test.
    d_t__gc_p__tes_t__impersonabl_e__servic_e__account = config.require("DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT")
    connection = dynatrace.GcpConnection("connection",
        name="#name#",
        type="serviceAccountImpersonation",
        service_account_impersonation={
            "service_account_id": d_t__gc_p__tes_t__impersonabl_e__servic_e__account,
            "consumers": ["SVC:com.dynatrace.openpipeline"],
        })
    example = dynatrace.OpenpipelineV2SystemEventsDataforwarding("example",
        forwarding_name="#name#",
        enabled=False,
        matcher="true",
        cloud_vendor_type="gcp",
        gcp_connection={
            "bucket_name": "my-bucket",
            "connection_id": connection.id,
        },
        data_forwarding_type="processed",
        pipelines=[pipeline.id],
        bulk_pattern="<YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    	"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		pipeline, err := dynatrace.NewOpenpipelineV2SystemEventsPipelines(ctx, "pipeline", &dynatrace.OpenpipelineV2SystemEventsPipelinesArgs{
    			DisplayName: pulumi.String("Minimal pipeline"),
    			CustomId:    pulumi.String("pipeline_Minimal_pipeline_1234_tf_#name#"),
    		})
    		if err != nil {
    			return err
    		}
    		cfg := config.New(ctx, "")
    		// The service account that should be used for the GCP connection setup end-to-end test.
    		DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT := cfg.Require("DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT")
    		connection, err := dynatrace.NewGcpConnection(ctx, "connection", &dynatrace.GcpConnectionArgs{
    			Name: pulumi.String("#name#"),
    			Type: pulumi.String("serviceAccountImpersonation"),
    			ServiceAccountImpersonation: &dynatrace.GcpConnectionServiceAccountImpersonationArgs{
    				ServiceAccountId: pulumi.String(DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT),
    				Consumers: pulumi.StringArray{
    					pulumi.String("SVC:com.dynatrace.openpipeline"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = dynatrace.NewOpenpipelineV2SystemEventsDataforwarding(ctx, "example", &dynatrace.OpenpipelineV2SystemEventsDataforwardingArgs{
    			ForwardingName:  pulumi.String("#name#"),
    			Enabled:         pulumi.Bool(false),
    			Matcher:         pulumi.String("true"),
    			CloudVendorType: pulumi.String("gcp"),
    			GcpConnection: &dynatrace.OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs{
    				BucketName:   pulumi.String("my-bucket"),
    				ConnectionId: connection.ID(),
    			},
    			DataForwardingType: pulumi.String("processed"),
    			Pipelines: pulumi.StringArray{
    				pipeline.ID(),
    			},
    			BulkPattern: pulumi.String("<YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz"),
    		})
    		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 pipeline = new Dynatrace.OpenpipelineV2SystemEventsPipelines("pipeline", new()
        {
            DisplayName = "Minimal pipeline",
            CustomId = "pipeline_Minimal_pipeline_1234_tf_#name#",
        });
    
        var config = new Config();
        // The service account that should be used for the GCP connection setup end-to-end test.
        var DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT = config.Require("DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT");
        var connection = new Dynatrace.GcpConnection("connection", new()
        {
            Name = "#name#",
            Type = "serviceAccountImpersonation",
            ServiceAccountImpersonation = new Dynatrace.Inputs.GcpConnectionServiceAccountImpersonationArgs
            {
                ServiceAccountId = DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT,
                Consumers = new[]
                {
                    "SVC:com.dynatrace.openpipeline",
                },
            },
        });
    
        var example = new Dynatrace.OpenpipelineV2SystemEventsDataforwarding("example", new()
        {
            ForwardingName = "#name#",
            Enabled = false,
            Matcher = "true",
            CloudVendorType = "gcp",
            GcpConnection = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs
            {
                BucketName = "my-bucket",
                ConnectionId = connection.Id,
            },
            DataForwardingType = "processed",
            Pipelines = new[]
            {
                pipeline.Id,
            },
            BulkPattern = "<YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.OpenpipelineV2SystemEventsPipelines;
    import com.pulumi.dynatrace.OpenpipelineV2SystemEventsPipelinesArgs;
    import com.pulumi.dynatrace.GcpConnection;
    import com.pulumi.dynatrace.GcpConnectionArgs;
    import com.pulumi.dynatrace.inputs.GcpConnectionServiceAccountImpersonationArgs;
    import com.pulumi.dynatrace.OpenpipelineV2SystemEventsDataforwarding;
    import com.pulumi.dynatrace.OpenpipelineV2SystemEventsDataforwardingArgs;
    import com.pulumi.dynatrace.inputs.OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs;
    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) {
            final var config = ctx.config();
            var pipeline = new OpenpipelineV2SystemEventsPipelines("pipeline", OpenpipelineV2SystemEventsPipelinesArgs.builder()
                .displayName("Minimal pipeline")
                .customId("pipeline_Minimal_pipeline_1234_tf_#name#")
                .build());
    
            final var DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT = config.require("DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT");
            var connection = new GcpConnection("connection", GcpConnectionArgs.builder()
                .name("#name#")
                .type("serviceAccountImpersonation")
                .serviceAccountImpersonation(GcpConnectionServiceAccountImpersonationArgs.builder()
                    .serviceAccountId(DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT)
                    .consumers("SVC:com.dynatrace.openpipeline")
                    .build())
                .build());
    
            var example = new OpenpipelineV2SystemEventsDataforwarding("example", OpenpipelineV2SystemEventsDataforwardingArgs.builder()
                .forwardingName("#name#")
                .enabled(false)
                .matcher("true")
                .cloudVendorType("gcp")
                .gcpConnection(OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs.builder()
                    .bucketName("my-bucket")
                    .connectionId(connection.id())
                    .build())
                .dataForwardingType("processed")
                .pipelines(pipeline.id())
                .bulkPattern("<YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz")
                .build());
    
        }
    }
    
    configuration:
      # Create GCP connection
      DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT:
        type: string
    resources:
      example:
        type: dynatrace:OpenpipelineV2SystemEventsDataforwarding
        properties:
          forwardingName: '#name#'
          enabled: false
          matcher: 'true'
          cloudVendorType: gcp
          gcpConnection:
            bucketName: my-bucket
            connectionId: ${connection.id}
          dataForwardingType: processed
          pipelines:
            - ${pipeline.id}
          bulkPattern: <YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz
      pipeline:
        type: dynatrace:OpenpipelineV2SystemEventsPipelines
        properties:
          displayName: Minimal pipeline
          customId: pipeline_Minimal_pipeline_1234_tf_#name#
      connection:
        type: dynatrace:GcpConnection
        properties:
          name: '#name#'
          type: serviceAccountImpersonation
          serviceAccountImpersonation:
            serviceAccountId: ${DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT}
            consumers:
              - SVC:com.dynatrace.openpipeline
    
    pulumi {
      required_providers {
        dynatrace = {
          source = "pulumi/dynatrace"
        }
      }
    }
    
    resource "dynatrace_openpipelinev2systemeventsdataforwarding" "example" {
      forwarding_name   = "#name#"
      enabled           = false
      matcher           = "true"
      cloud_vendor_type = "gcp"
      gcp_connection = {
        bucket_name   = "my-bucket"
        connection_id = dynatrace_gcpconnection.connection.id
      }
      data_forwarding_type = "processed"
      pipelines            = [dynatrace_openpipelinev2systemeventspipelines.pipeline.id]
      bulk_pattern         = "<YYYYMMDD>/<HH>/<HHmmss.SSSS>_<bulk-id>.json.gz"
    }
    resource "dynatrace_openpipelinev2systemeventspipelines" "pipeline" {
      display_name = "Minimal pipeline"
      custom_id    = "pipeline_Minimal_pipeline_1234_tf_#name#"
    }
    resource "dynatrace_gcpconnection" "connection" {
      name = "#name#"
      type = "serviceAccountImpersonation"
      service_account_impersonation = {
        service_account_id = var.DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT
        consumers          = ["SVC:com.dynatrace.openpipeline"]
      }
    }
    # Create GCP connection
    variable "DT_GCP_TEST_IMPERSONABLE_SERVICE_ACCOUNT" {
      type        = string
      description = "The service account that should be used for the GCP connection setup end-to-end test."
    }
    

    Create OpenpipelineV2SystemEventsDataforwarding Resource

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

    Constructor syntax

    new OpenpipelineV2SystemEventsDataforwarding(name: string, args: OpenpipelineV2SystemEventsDataforwardingArgs, opts?: CustomResourceOptions);
    @overload
    def OpenpipelineV2SystemEventsDataforwarding(resource_name: str,
                                                 args: OpenpipelineV2SystemEventsDataforwardingArgs,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenpipelineV2SystemEventsDataforwarding(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 forwarding_name: Optional[str] = None,
                                                 data_forwarding_type: Optional[str] = None,
                                                 matcher: Optional[str] = None,
                                                 enabled: Optional[bool] = None,
                                                 bulk_pattern: Optional[str] = None,
                                                 cloud_vendor_type: Optional[str] = None,
                                                 azure_connection: Optional[OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs] = None,
                                                 gcp_connection: Optional[OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs] = None,
                                                 bulk_size: Optional[int] = None,
                                                 aws_connection: Optional[OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs] = None,
                                                 builtin_pipelines: Optional[Sequence[str]] = None,
                                                 ingest_sources: Optional[Sequence[str]] = None,
                                                 builtin_ingest_sources: Optional[Sequence[str]] = None,
                                                 pipelines: Optional[Sequence[str]] = None,
                                                 processing: Optional[OpenpipelineV2SystemEventsDataforwardingProcessingArgs] = None)
    func NewOpenpipelineV2SystemEventsDataforwarding(ctx *Context, name string, args OpenpipelineV2SystemEventsDataforwardingArgs, opts ...ResourceOption) (*OpenpipelineV2SystemEventsDataforwarding, error)
    public OpenpipelineV2SystemEventsDataforwarding(string name, OpenpipelineV2SystemEventsDataforwardingArgs args, CustomResourceOptions? opts = null)
    public OpenpipelineV2SystemEventsDataforwarding(String name, OpenpipelineV2SystemEventsDataforwardingArgs args)
    public OpenpipelineV2SystemEventsDataforwarding(String name, OpenpipelineV2SystemEventsDataforwardingArgs args, CustomResourceOptions options)
    
    type: dynatrace:OpenpipelineV2SystemEventsDataforwarding
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "dynatrace_openpipelinev2systemeventsdataforwarding" "name" {
        # resource properties
    }

    Parameters

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

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var openpipelineV2SystemEventsDataforwardingResource = new Dynatrace.OpenpipelineV2SystemEventsDataforwarding("openpipelineV2SystemEventsDataforwardingResource", new()
    {
        ForwardingName = "string",
        DataForwardingType = "string",
        Matcher = "string",
        Enabled = false,
        BulkPattern = "string",
        CloudVendorType = "string",
        AzureConnection = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs
        {
            ConnectionId = "string",
            ContainerUrl = "string",
        },
        GcpConnection = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs
        {
            BucketName = "string",
            ConnectionId = "string",
        },
        BulkSize = 0,
        AwsConnection = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs
        {
            Arn = "string",
            ConnectionId = "string",
        },
        BuiltinPipelines = new[]
        {
            "string",
        },
        IngestSources = new[]
        {
            "string",
        },
        BuiltinIngestSources = new[]
        {
            "string",
        },
        Pipelines = new[]
        {
            "string",
        },
        Processing = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingArgs
        {
            Processors = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsArgs
            {
                Processors = new[]
                {
                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorArgs
                    {
                        Description = "string",
                        Type = "string",
                        Id = "string",
                        Enabled = false,
                        Dql = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDqlArgs
                        {
                            Script = "string",
                        },
                        SampleData = "string",
                        CounterMetric = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricArgs
                        {
                            MetricKey = "string",
                            Dimensions = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsArgs
                            {
                                FieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsFieldExtractionEntryArgs
                                    {
                                        ConstantFieldName = "string",
                                        ConstantValue = "string",
                                        DefaultValue = "string",
                                        DestinationFieldName = "string",
                                        ExtractionType = "string",
                                        SourceFieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                        },
                        AzureLogForwarding = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingArgs
                        {
                            FieldExtraction = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs
                            {
                                Type = "string",
                                Excludes = new[]
                                {
                                    "string",
                                },
                                Include = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
                                {
                                    FieldExtractionEntries = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeFieldExtractionEntryArgs
                                        {
                                            ConstantFieldName = "string",
                                            ConstantValue = "string",
                                            DefaultValue = "string",
                                            DestinationFieldName = "string",
                                            ExtractionType = "string",
                                            SourceFieldName = "string",
                                            Strategy = "string",
                                        },
                                    },
                                },
                            },
                            ForwarderConfigId = "string",
                        },
                        CostAllocation = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationArgs
                        {
                            Value = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                        },
                        FieldsAdd = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddArgs
                        {
                            Fields = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsArgs
                            {
                                Fields = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
                                    {
                                        Name = "string",
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        FieldsRemove = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemoveArgs
                        {
                            Fields = new[]
                            {
                                "string",
                            },
                        },
                        FieldsRename = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameArgs
                        {
                            Fields = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsArgs
                            {
                                Fields = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
                                    {
                                        FromName = "string",
                                        ToName = "string",
                                    },
                                },
                            },
                        },
                        GeoLookup = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookupArgs
                        {
                            IpFieldKey = "string",
                            GeoFieldPrefix = "string",
                            OutputFields = new[]
                            {
                                "string",
                            },
                        },
                        HistogramMetric = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricArgs
                        {
                            Field = "string",
                            MetricKey = "string",
                            DefaultValue = "string",
                            Dimensions = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsArgs
                            {
                                FieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsFieldExtractionEntryArgs
                                    {
                                        ConstantFieldName = "string",
                                        ConstantValue = "string",
                                        DefaultValue = "string",
                                        DestinationFieldName = "string",
                                        ExtractionType = "string",
                                        SourceFieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                        },
                        BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignmentArgs
                        {
                            BucketName = "string",
                        },
                        Matcher = "string",
                        ProductAllocation = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationArgs
                        {
                            Value = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                        },
                        Davis = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisArgs
                        {
                            Properties = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesArgs
                            {
                                Properties = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesPropertyArgs
                                    {
                                        Key = "string",
                                        Strategy = "string",
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        SamplingAwareCounterMetric = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricArgs
                        {
                            MetricKey = "string",
                            Aggregation = "string",
                            Dimensions = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
                            {
                                FieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsFieldExtractionEntryArgs
                                    {
                                        ConstantFieldName = "string",
                                        ConstantValue = "string",
                                        DefaultValue = "string",
                                        DestinationFieldName = "string",
                                        ExtractionType = "string",
                                        SourceFieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                            Sampling = "string",
                        },
                        SamplingAwareHistogramMetric = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs
                        {
                            Measurement = "string",
                            MetricKey = "string",
                            Aggregation = "string",
                            DefaultValue = "string",
                            Dimensions = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
                            {
                                FieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsFieldExtractionEntryArgs
                                    {
                                        ConstantFieldName = "string",
                                        ConstantValue = "string",
                                        DefaultValue = "string",
                                        DestinationFieldName = "string",
                                        ExtractionType = "string",
                                        SourceFieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                            Field = "string",
                            Sampling = "string",
                        },
                        SamplingAwareValueMetric = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricArgs
                        {
                            Measurement = "string",
                            MetricKey = "string",
                            Aggregation = "string",
                            DefaultValue = "string",
                            Dimensions = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
                            {
                                FieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsFieldExtractionEntryArgs
                                    {
                                        ConstantFieldName = "string",
                                        ConstantValue = "string",
                                        DefaultValue = "string",
                                        DestinationFieldName = "string",
                                        ExtractionType = "string",
                                        SourceFieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                            Field = "string",
                            Sampling = "string",
                        },
                        SdlcEvent = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventArgs
                        {
                            EventCategory = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            EventProvider = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            EventStatus = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            EventType = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            FieldExtraction = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionArgs
                            {
                                Type = "string",
                                Excludes = new[]
                                {
                                    "string",
                                },
                                Include = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
                                {
                                    FieldExtractionEntries = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeFieldExtractionEntryArgs
                                        {
                                            ConstantFieldName = "string",
                                            ConstantValue = "string",
                                            DefaultValue = "string",
                                            DestinationFieldName = "string",
                                            ExtractionType = "string",
                                            SourceFieldName = "string",
                                            Strategy = "string",
                                        },
                                    },
                                },
                            },
                        },
                        SecurityContext = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextArgs
                        {
                            Value = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                        },
                        SecurityEvent = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventArgs
                        {
                            FieldExtraction = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionArgs
                            {
                                Type = "string",
                                Excludes = new[]
                                {
                                    "string",
                                },
                                Include = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
                                {
                                    FieldExtractionEntries = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeFieldExtractionEntryArgs
                                        {
                                            ConstantFieldName = "string",
                                            ConstantValue = "string",
                                            DefaultValue = "string",
                                            DestinationFieldName = "string",
                                            ExtractionType = "string",
                                            SourceFieldName = "string",
                                            Strategy = "string",
                                        },
                                    },
                                },
                            },
                        },
                        SmartscapeEdge = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdgeArgs
                        {
                            EdgeType = "string",
                            SourceIdFieldName = "string",
                            SourceType = "string",
                            TargetIdFieldName = "string",
                            TargetType = "string",
                        },
                        SmartscapeNode = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeArgs
                        {
                            ExtractNode = false,
                            IdComponents = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs
                            {
                                IdComponents = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
                                    {
                                        IdComponent = "string",
                                        ReferencedFieldName = "string",
                                    },
                                },
                            },
                            NodeIdFieldName = "string",
                            NodeType = "string",
                            FieldsToExtract = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
                            {
                                SmartscapeFieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
                                    {
                                        ReferencedFieldName = "string",
                                        FieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                            NodeName = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            StaticEdgesToExtract = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
                            {
                                SmartscapeStaticEdgeExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
                                    {
                                        EdgeType = "string",
                                        TargetIdFieldName = "string",
                                        TargetType = "string",
                                    },
                                },
                            },
                        },
                        Technology = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnologyArgs
                        {
                            TechnologyId = "string",
                            CustomMatcher = "string",
                        },
                        Bizevent = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventArgs
                        {
                            EventProvider = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            EventType = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeArgs
                            {
                                Type = "string",
                                Constant = "string",
                                Field = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeFieldArgs
                                {
                                    SourceFieldName = "string",
                                    DefaultValue = "string",
                                },
                                MultiValueConstants = new[]
                                {
                                    "string",
                                },
                            },
                            FieldExtraction = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionArgs
                            {
                                Type = "string",
                                Excludes = new[]
                                {
                                    "string",
                                },
                                Include = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs
                                {
                                    FieldExtractionEntries = new[]
                                    {
                                        new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeFieldExtractionEntryArgs
                                        {
                                            ConstantFieldName = "string",
                                            ConstantValue = "string",
                                            DefaultValue = "string",
                                            DestinationFieldName = "string",
                                            ExtractionType = "string",
                                            SourceFieldName = "string",
                                            Strategy = "string",
                                        },
                                    },
                                },
                            },
                        },
                        ValueMetric = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricArgs
                        {
                            Field = "string",
                            MetricKey = "string",
                            DefaultValue = "string",
                            Dimensions = new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsArgs
                            {
                                FieldExtractionEntries = new[]
                                {
                                    new Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsFieldExtractionEntryArgs
                                    {
                                        ConstantFieldName = "string",
                                        ConstantValue = "string",
                                        DefaultValue = "string",
                                        DestinationFieldName = "string",
                                        ExtractionType = "string",
                                        SourceFieldName = "string",
                                        Strategy = "string",
                                    },
                                },
                            },
                        },
                    },
                },
            },
        },
    });
    
    example, err := dynatrace.NewOpenpipelineV2SystemEventsDataforwarding(ctx, "openpipelineV2SystemEventsDataforwardingResource", &dynatrace.OpenpipelineV2SystemEventsDataforwardingArgs{
    	ForwardingName:     pulumi.String("string"),
    	DataForwardingType: pulumi.String("string"),
    	Matcher:            pulumi.String("string"),
    	Enabled:            pulumi.Bool(false),
    	BulkPattern:        pulumi.String("string"),
    	CloudVendorType:    pulumi.String("string"),
    	AzureConnection: &dynatrace.OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs{
    		ConnectionId: pulumi.String("string"),
    		ContainerUrl: pulumi.String("string"),
    	},
    	GcpConnection: &dynatrace.OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs{
    		BucketName:   pulumi.String("string"),
    		ConnectionId: pulumi.String("string"),
    	},
    	BulkSize: pulumi.Int(0),
    	AwsConnection: &dynatrace.OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs{
    		Arn:          pulumi.String("string"),
    		ConnectionId: pulumi.String("string"),
    	},
    	BuiltinPipelines: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IngestSources: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BuiltinIngestSources: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Pipelines: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Processing: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingArgs{
    		Processors: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsArgs{
    			Processors: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorArray{
    				&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorArgs{
    					Description: pulumi.String("string"),
    					Type:        pulumi.String("string"),
    					Id:          pulumi.String("string"),
    					Enabled:     pulumi.Bool(false),
    					Dql: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDqlArgs{
    						Script: pulumi.String("string"),
    					},
    					SampleData: pulumi.String("string"),
    					CounterMetric: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricArgs{
    						MetricKey: pulumi.String("string"),
    						Dimensions: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsArgs{
    							FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsFieldExtractionEntryArgs{
    									ConstantFieldName:    pulumi.String("string"),
    									ConstantValue:        pulumi.String("string"),
    									DefaultValue:         pulumi.String("string"),
    									DestinationFieldName: pulumi.String("string"),
    									ExtractionType:       pulumi.String("string"),
    									SourceFieldName:      pulumi.String("string"),
    									Strategy:             pulumi.String("string"),
    								},
    							},
    						},
    					},
    					AzureLogForwarding: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingArgs{
    						FieldExtraction: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs{
    							Type: pulumi.String("string"),
    							Excludes: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Include: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs{
    								FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeFieldExtractionEntryArray{
    									&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeFieldExtractionEntryArgs{
    										ConstantFieldName:    pulumi.String("string"),
    										ConstantValue:        pulumi.String("string"),
    										DefaultValue:         pulumi.String("string"),
    										DestinationFieldName: pulumi.String("string"),
    										ExtractionType:       pulumi.String("string"),
    										SourceFieldName:      pulumi.String("string"),
    										Strategy:             pulumi.String("string"),
    									},
    								},
    							},
    						},
    						ForwarderConfigId: pulumi.String("string"),
    					},
    					CostAllocation: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationArgs{
    						Value: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    					},
    					FieldsAdd: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddArgs{
    						Fields: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsArgs{
    							Fields: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
    									Name:  pulumi.String("string"),
    									Value: pulumi.String("string"),
    								},
    							},
    						},
    					},
    					FieldsRemove: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemoveArgs{
    						Fields: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    					FieldsRename: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameArgs{
    						Fields: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsArgs{
    							Fields: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
    									FromName: pulumi.String("string"),
    									ToName:   pulumi.String("string"),
    								},
    							},
    						},
    					},
    					GeoLookup: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookupArgs{
    						IpFieldKey:     pulumi.String("string"),
    						GeoFieldPrefix: pulumi.String("string"),
    						OutputFields: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    					HistogramMetric: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricArgs{
    						Field:        pulumi.String("string"),
    						MetricKey:    pulumi.String("string"),
    						DefaultValue: pulumi.String("string"),
    						Dimensions: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsArgs{
    							FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsFieldExtractionEntryArgs{
    									ConstantFieldName:    pulumi.String("string"),
    									ConstantValue:        pulumi.String("string"),
    									DefaultValue:         pulumi.String("string"),
    									DestinationFieldName: pulumi.String("string"),
    									ExtractionType:       pulumi.String("string"),
    									SourceFieldName:      pulumi.String("string"),
    									Strategy:             pulumi.String("string"),
    								},
    							},
    						},
    					},
    					BucketAssignment: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignmentArgs{
    						BucketName: pulumi.String("string"),
    					},
    					Matcher: pulumi.String("string"),
    					ProductAllocation: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationArgs{
    						Value: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    					},
    					Davis: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisArgs{
    						Properties: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesArgs{
    							Properties: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesPropertyArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesPropertyArgs{
    									Key:      pulumi.String("string"),
    									Strategy: pulumi.String("string"),
    									Value:    pulumi.String("string"),
    								},
    							},
    						},
    					},
    					SamplingAwareCounterMetric: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricArgs{
    						MetricKey:   pulumi.String("string"),
    						Aggregation: pulumi.String("string"),
    						Dimensions: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs{
    							FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsFieldExtractionEntryArgs{
    									ConstantFieldName:    pulumi.String("string"),
    									ConstantValue:        pulumi.String("string"),
    									DefaultValue:         pulumi.String("string"),
    									DestinationFieldName: pulumi.String("string"),
    									ExtractionType:       pulumi.String("string"),
    									SourceFieldName:      pulumi.String("string"),
    									Strategy:             pulumi.String("string"),
    								},
    							},
    						},
    						Sampling: pulumi.String("string"),
    					},
    					SamplingAwareHistogramMetric: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs{
    						Measurement:  pulumi.String("string"),
    						MetricKey:    pulumi.String("string"),
    						Aggregation:  pulumi.String("string"),
    						DefaultValue: pulumi.String("string"),
    						Dimensions: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs{
    							FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsFieldExtractionEntryArgs{
    									ConstantFieldName:    pulumi.String("string"),
    									ConstantValue:        pulumi.String("string"),
    									DefaultValue:         pulumi.String("string"),
    									DestinationFieldName: pulumi.String("string"),
    									ExtractionType:       pulumi.String("string"),
    									SourceFieldName:      pulumi.String("string"),
    									Strategy:             pulumi.String("string"),
    								},
    							},
    						},
    						Field:    pulumi.String("string"),
    						Sampling: pulumi.String("string"),
    					},
    					SamplingAwareValueMetric: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricArgs{
    						Measurement:  pulumi.String("string"),
    						MetricKey:    pulumi.String("string"),
    						Aggregation:  pulumi.String("string"),
    						DefaultValue: pulumi.String("string"),
    						Dimensions: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs{
    							FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsFieldExtractionEntryArgs{
    									ConstantFieldName:    pulumi.String("string"),
    									ConstantValue:        pulumi.String("string"),
    									DefaultValue:         pulumi.String("string"),
    									DestinationFieldName: pulumi.String("string"),
    									ExtractionType:       pulumi.String("string"),
    									SourceFieldName:      pulumi.String("string"),
    									Strategy:             pulumi.String("string"),
    								},
    							},
    						},
    						Field:    pulumi.String("string"),
    						Sampling: pulumi.String("string"),
    					},
    					SdlcEvent: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventArgs{
    						EventCategory: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						EventProvider: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						EventStatus: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						EventType: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						FieldExtraction: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionArgs{
    							Type: pulumi.String("string"),
    							Excludes: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Include: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs{
    								FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeFieldExtractionEntryArray{
    									&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeFieldExtractionEntryArgs{
    										ConstantFieldName:    pulumi.String("string"),
    										ConstantValue:        pulumi.String("string"),
    										DefaultValue:         pulumi.String("string"),
    										DestinationFieldName: pulumi.String("string"),
    										ExtractionType:       pulumi.String("string"),
    										SourceFieldName:      pulumi.String("string"),
    										Strategy:             pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    					SecurityContext: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextArgs{
    						Value: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    					},
    					SecurityEvent: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventArgs{
    						FieldExtraction: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionArgs{
    							Type: pulumi.String("string"),
    							Excludes: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Include: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs{
    								FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeFieldExtractionEntryArray{
    									&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeFieldExtractionEntryArgs{
    										ConstantFieldName:    pulumi.String("string"),
    										ConstantValue:        pulumi.String("string"),
    										DefaultValue:         pulumi.String("string"),
    										DestinationFieldName: pulumi.String("string"),
    										ExtractionType:       pulumi.String("string"),
    										SourceFieldName:      pulumi.String("string"),
    										Strategy:             pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    					SmartscapeEdge: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdgeArgs{
    						EdgeType:          pulumi.String("string"),
    						SourceIdFieldName: pulumi.String("string"),
    						SourceType:        pulumi.String("string"),
    						TargetIdFieldName: pulumi.String("string"),
    						TargetType:        pulumi.String("string"),
    					},
    					SmartscapeNode: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeArgs{
    						ExtractNode: pulumi.Bool(false),
    						IdComponents: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs{
    							IdComponents: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs{
    									IdComponent:         pulumi.String("string"),
    									ReferencedFieldName: pulumi.String("string"),
    								},
    							},
    						},
    						NodeIdFieldName: pulumi.String("string"),
    						NodeType:        pulumi.String("string"),
    						FieldsToExtract: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs{
    							SmartscapeFieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs{
    									ReferencedFieldName: pulumi.String("string"),
    									FieldName:           pulumi.String("string"),
    									Strategy:            pulumi.String("string"),
    								},
    							},
    						},
    						NodeName: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						StaticEdgesToExtract: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs{
    							SmartscapeStaticEdgeExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs{
    									EdgeType:          pulumi.String("string"),
    									TargetIdFieldName: pulumi.String("string"),
    									TargetType:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    					Technology: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnologyArgs{
    						TechnologyId:  pulumi.String("string"),
    						CustomMatcher: pulumi.String("string"),
    					},
    					Bizevent: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventArgs{
    						EventProvider: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						EventType: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeArgs{
    							Type:     pulumi.String("string"),
    							Constant: pulumi.String("string"),
    							Field: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeFieldArgs{
    								SourceFieldName: pulumi.String("string"),
    								DefaultValue:    pulumi.String("string"),
    							},
    							MultiValueConstants: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						FieldExtraction: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionArgs{
    							Type: pulumi.String("string"),
    							Excludes: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Include: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs{
    								FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeFieldExtractionEntryArray{
    									&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeFieldExtractionEntryArgs{
    										ConstantFieldName:    pulumi.String("string"),
    										ConstantValue:        pulumi.String("string"),
    										DefaultValue:         pulumi.String("string"),
    										DestinationFieldName: pulumi.String("string"),
    										ExtractionType:       pulumi.String("string"),
    										SourceFieldName:      pulumi.String("string"),
    										Strategy:             pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    					ValueMetric: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricArgs{
    						Field:        pulumi.String("string"),
    						MetricKey:    pulumi.String("string"),
    						DefaultValue: pulumi.String("string"),
    						Dimensions: &dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsArgs{
    							FieldExtractionEntries: dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsFieldExtractionEntryArray{
    								&dynatrace.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsFieldExtractionEntryArgs{
    									ConstantFieldName:    pulumi.String("string"),
    									ConstantValue:        pulumi.String("string"),
    									DefaultValue:         pulumi.String("string"),
    									DestinationFieldName: pulumi.String("string"),
    									ExtractionType:       pulumi.String("string"),
    									SourceFieldName:      pulumi.String("string"),
    									Strategy:             pulumi.String("string"),
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    	},
    })
    
    resource "dynatrace_openpipelinev2systemeventsdataforwarding" "openpipelineV2SystemEventsDataforwardingResource" {
      forwarding_name      = "string"
      data_forwarding_type = "string"
      matcher              = "string"
      enabled              = false
      bulk_pattern         = "string"
      cloud_vendor_type    = "string"
      azure_connection = {
        connection_id = "string"
        container_url = "string"
      }
      gcp_connection = {
        bucket_name   = "string"
        connection_id = "string"
      }
      bulk_size = 0
      aws_connection = {
        arn           = "string"
        connection_id = "string"
      }
      builtin_pipelines      = ["string"]
      ingest_sources         = ["string"]
      builtin_ingest_sources = ["string"]
      pipelines              = ["string"]
      processing = {
        processors = {
          processors = [{
            "description" = "string"
            "type"        = "string"
            "id"          = "string"
            "enabled"     = false
            "dql" = {
              "script" = "string"
            }
            "sampleData" = "string"
            "counterMetric" = {
              "metricKey" = "string"
              "dimensions" = {
                "fieldExtractionEntries" = [{
                  "constantFieldName"    = "string"
                  "constantValue"        = "string"
                  "defaultValue"         = "string"
                  "destinationFieldName" = "string"
                  "extractionType"       = "string"
                  "sourceFieldName"      = "string"
                  "strategy"             = "string"
                }]
              }
            }
            "azureLogForwarding" = {
              "fieldExtraction" = {
                "type"     = "string"
                "excludes" = ["string"]
                "include" = {
                  "fieldExtractionEntries" = [{
                    "constantFieldName"    = "string"
                    "constantValue"        = "string"
                    "defaultValue"         = "string"
                    "destinationFieldName" = "string"
                    "extractionType"       = "string"
                    "sourceFieldName"      = "string"
                    "strategy"             = "string"
                  }]
                }
              }
              "forwarderConfigId" = "string"
            }
            "costAllocation" = {
              "value" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
            }
            "fieldsAdd" = {
              "fields" = {
                "fields" = [{
                  "name"  = "string"
                  "value" = "string"
                }]
              }
            }
            "fieldsRemove" = {
              "fields" = ["string"]
            }
            "fieldsRename" = {
              "fields" = {
                "fields" = [{
                  "fromName" = "string"
                  "toName"   = "string"
                }]
              }
            }
            "geoLookup" = {
              "ipFieldKey"     = "string"
              "geoFieldPrefix" = "string"
              "outputFields"   = ["string"]
            }
            "histogramMetric" = {
              "field"        = "string"
              "metricKey"    = "string"
              "defaultValue" = "string"
              "dimensions" = {
                "fieldExtractionEntries" = [{
                  "constantFieldName"    = "string"
                  "constantValue"        = "string"
                  "defaultValue"         = "string"
                  "destinationFieldName" = "string"
                  "extractionType"       = "string"
                  "sourceFieldName"      = "string"
                  "strategy"             = "string"
                }]
              }
            }
            "bucketAssignment" = {
              "bucketName" = "string"
            }
            "matcher" = "string"
            "productAllocation" = {
              "value" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
            }
            "davis" = {
              "properties" = {
                "properties" = [{
                  "key"      = "string"
                  "strategy" = "string"
                  "value"    = "string"
                }]
              }
            }
            "samplingAwareCounterMetric" = {
              "metricKey"   = "string"
              "aggregation" = "string"
              "dimensions" = {
                "fieldExtractionEntries" = [{
                  "constantFieldName"    = "string"
                  "constantValue"        = "string"
                  "defaultValue"         = "string"
                  "destinationFieldName" = "string"
                  "extractionType"       = "string"
                  "sourceFieldName"      = "string"
                  "strategy"             = "string"
                }]
              }
              "sampling" = "string"
            }
            "samplingAwareHistogramMetric" = {
              "measurement"  = "string"
              "metricKey"    = "string"
              "aggregation"  = "string"
              "defaultValue" = "string"
              "dimensions" = {
                "fieldExtractionEntries" = [{
                  "constantFieldName"    = "string"
                  "constantValue"        = "string"
                  "defaultValue"         = "string"
                  "destinationFieldName" = "string"
                  "extractionType"       = "string"
                  "sourceFieldName"      = "string"
                  "strategy"             = "string"
                }]
              }
              "field"    = "string"
              "sampling" = "string"
            }
            "samplingAwareValueMetric" = {
              "measurement"  = "string"
              "metricKey"    = "string"
              "aggregation"  = "string"
              "defaultValue" = "string"
              "dimensions" = {
                "fieldExtractionEntries" = [{
                  "constantFieldName"    = "string"
                  "constantValue"        = "string"
                  "defaultValue"         = "string"
                  "destinationFieldName" = "string"
                  "extractionType"       = "string"
                  "sourceFieldName"      = "string"
                  "strategy"             = "string"
                }]
              }
              "field"    = "string"
              "sampling" = "string"
            }
            "sdlcEvent" = {
              "eventCategory" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "eventProvider" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "eventStatus" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "eventType" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "fieldExtraction" = {
                "type"     = "string"
                "excludes" = ["string"]
                "include" = {
                  "fieldExtractionEntries" = [{
                    "constantFieldName"    = "string"
                    "constantValue"        = "string"
                    "defaultValue"         = "string"
                    "destinationFieldName" = "string"
                    "extractionType"       = "string"
                    "sourceFieldName"      = "string"
                    "strategy"             = "string"
                  }]
                }
              }
            }
            "securityContext" = {
              "value" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
            }
            "securityEvent" = {
              "fieldExtraction" = {
                "type"     = "string"
                "excludes" = ["string"]
                "include" = {
                  "fieldExtractionEntries" = [{
                    "constantFieldName"    = "string"
                    "constantValue"        = "string"
                    "defaultValue"         = "string"
                    "destinationFieldName" = "string"
                    "extractionType"       = "string"
                    "sourceFieldName"      = "string"
                    "strategy"             = "string"
                  }]
                }
              }
            }
            "smartscapeEdge" = {
              "edgeType"          = "string"
              "sourceIdFieldName" = "string"
              "sourceType"        = "string"
              "targetIdFieldName" = "string"
              "targetType"        = "string"
            }
            "smartscapeNode" = {
              "extractNode" = false
              "idComponents" = {
                "idComponents" = [{
                  "idComponent"         = "string"
                  "referencedFieldName" = "string"
                }]
              }
              "nodeIdFieldName" = "string"
              "nodeType"        = "string"
              "fieldsToExtract" = {
                "smartscapeFieldExtractionEntries" = [{
                  "referencedFieldName" = "string"
                  "fieldName"           = "string"
                  "strategy"            = "string"
                }]
              }
              "nodeName" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "staticEdgesToExtract" = {
                "smartscapeStaticEdgeExtractionEntries" = [{
                  "edgeType"          = "string"
                  "targetIdFieldName" = "string"
                  "targetType"        = "string"
                }]
              }
            }
            "technology" = {
              "technologyId"  = "string"
              "customMatcher" = "string"
            }
            "bizevent" = {
              "eventProvider" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "eventType" = {
                "type"     = "string"
                "constant" = "string"
                "field" = {
                  "sourceFieldName" = "string"
                  "defaultValue"    = "string"
                }
                "multiValueConstants" = ["string"]
              }
              "fieldExtraction" = {
                "type"     = "string"
                "excludes" = ["string"]
                "include" = {
                  "fieldExtractionEntries" = [{
                    "constantFieldName"    = "string"
                    "constantValue"        = "string"
                    "defaultValue"         = "string"
                    "destinationFieldName" = "string"
                    "extractionType"       = "string"
                    "sourceFieldName"      = "string"
                    "strategy"             = "string"
                  }]
                }
              }
            }
            "valueMetric" = {
              "field"        = "string"
              "metricKey"    = "string"
              "defaultValue" = "string"
              "dimensions" = {
                "fieldExtractionEntries" = [{
                  "constantFieldName"    = "string"
                  "constantValue"        = "string"
                  "defaultValue"         = "string"
                  "destinationFieldName" = "string"
                  "extractionType"       = "string"
                  "sourceFieldName"      = "string"
                  "strategy"             = "string"
                }]
              }
            }
          }]
        }
      }
    }
    
    var openpipelineV2SystemEventsDataforwardingResource = new OpenpipelineV2SystemEventsDataforwarding("openpipelineV2SystemEventsDataforwardingResource", OpenpipelineV2SystemEventsDataforwardingArgs.builder()
        .forwardingName("string")
        .dataForwardingType("string")
        .matcher("string")
        .enabled(false)
        .bulkPattern("string")
        .cloudVendorType("string")
        .azureConnection(OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs.builder()
            .connectionId("string")
            .containerUrl("string")
            .build())
        .gcpConnection(OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs.builder()
            .bucketName("string")
            .connectionId("string")
            .build())
        .bulkSize(0)
        .awsConnection(OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs.builder()
            .arn("string")
            .connectionId("string")
            .build())
        .builtinPipelines("string")
        .ingestSources("string")
        .builtinIngestSources("string")
        .pipelines("string")
        .processing(OpenpipelineV2SystemEventsDataforwardingProcessingArgs.builder()
            .processors(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsArgs.builder()
                .processors(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorArgs.builder()
                    .description("string")
                    .type("string")
                    .id("string")
                    .enabled(false)
                    .dql(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDqlArgs.builder()
                        .script("string")
                        .build())
                    .sampleData("string")
                    .counterMetric(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricArgs.builder()
                        .metricKey("string")
                        .dimensions(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsArgs.builder()
                            .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsFieldExtractionEntryArgs.builder()
                                .constantFieldName("string")
                                .constantValue("string")
                                .defaultValue("string")
                                .destinationFieldName("string")
                                .extractionType("string")
                                .sourceFieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .build())
                    .azureLogForwarding(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingArgs.builder()
                        .fieldExtraction(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs.builder()
                            .type("string")
                            .excludes("string")
                            .include(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs.builder()
                                .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeFieldExtractionEntryArgs.builder()
                                    .constantFieldName("string")
                                    .constantValue("string")
                                    .defaultValue("string")
                                    .destinationFieldName("string")
                                    .extractionType("string")
                                    .sourceFieldName("string")
                                    .strategy("string")
                                    .build())
                                .build())
                            .build())
                        .forwarderConfigId("string")
                        .build())
                    .costAllocation(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationArgs.builder()
                        .value(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .build())
                    .fieldsAdd(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddArgs.builder()
                        .fields(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
                            .fields(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .build())
                        .build())
                    .fieldsRemove(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemoveArgs.builder()
                        .fields("string")
                        .build())
                    .fieldsRename(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameArgs.builder()
                        .fields(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
                            .fields(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
                                .fromName("string")
                                .toName("string")
                                .build())
                            .build())
                        .build())
                    .geoLookup(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookupArgs.builder()
                        .ipFieldKey("string")
                        .geoFieldPrefix("string")
                        .outputFields("string")
                        .build())
                    .histogramMetric(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricArgs.builder()
                        .field("string")
                        .metricKey("string")
                        .defaultValue("string")
                        .dimensions(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsArgs.builder()
                            .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsFieldExtractionEntryArgs.builder()
                                .constantFieldName("string")
                                .constantValue("string")
                                .defaultValue("string")
                                .destinationFieldName("string")
                                .extractionType("string")
                                .sourceFieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .build())
                    .bucketAssignment(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignmentArgs.builder()
                        .bucketName("string")
                        .build())
                    .matcher("string")
                    .productAllocation(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationArgs.builder()
                        .value(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .build())
                    .davis(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisArgs.builder()
                        .properties(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesArgs.builder()
                            .properties(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesPropertyArgs.builder()
                                .key("string")
                                .strategy("string")
                                .value("string")
                                .build())
                            .build())
                        .build())
                    .samplingAwareCounterMetric(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricArgs.builder()
                        .metricKey("string")
                        .aggregation("string")
                        .dimensions(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs.builder()
                            .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsFieldExtractionEntryArgs.builder()
                                .constantFieldName("string")
                                .constantValue("string")
                                .defaultValue("string")
                                .destinationFieldName("string")
                                .extractionType("string")
                                .sourceFieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .sampling("string")
                        .build())
                    .samplingAwareHistogramMetric(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs.builder()
                        .measurement("string")
                        .metricKey("string")
                        .aggregation("string")
                        .defaultValue("string")
                        .dimensions(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs.builder()
                            .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsFieldExtractionEntryArgs.builder()
                                .constantFieldName("string")
                                .constantValue("string")
                                .defaultValue("string")
                                .destinationFieldName("string")
                                .extractionType("string")
                                .sourceFieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .field("string")
                        .sampling("string")
                        .build())
                    .samplingAwareValueMetric(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricArgs.builder()
                        .measurement("string")
                        .metricKey("string")
                        .aggregation("string")
                        .defaultValue("string")
                        .dimensions(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs.builder()
                            .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsFieldExtractionEntryArgs.builder()
                                .constantFieldName("string")
                                .constantValue("string")
                                .defaultValue("string")
                                .destinationFieldName("string")
                                .extractionType("string")
                                .sourceFieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .field("string")
                        .sampling("string")
                        .build())
                    .sdlcEvent(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventArgs.builder()
                        .eventCategory(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .eventProvider(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .eventStatus(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .eventType(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .fieldExtraction(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionArgs.builder()
                            .type("string")
                            .excludes("string")
                            .include(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs.builder()
                                .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeFieldExtractionEntryArgs.builder()
                                    .constantFieldName("string")
                                    .constantValue("string")
                                    .defaultValue("string")
                                    .destinationFieldName("string")
                                    .extractionType("string")
                                    .sourceFieldName("string")
                                    .strategy("string")
                                    .build())
                                .build())
                            .build())
                        .build())
                    .securityContext(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextArgs.builder()
                        .value(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .build())
                    .securityEvent(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventArgs.builder()
                        .fieldExtraction(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionArgs.builder()
                            .type("string")
                            .excludes("string")
                            .include(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs.builder()
                                .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeFieldExtractionEntryArgs.builder()
                                    .constantFieldName("string")
                                    .constantValue("string")
                                    .defaultValue("string")
                                    .destinationFieldName("string")
                                    .extractionType("string")
                                    .sourceFieldName("string")
                                    .strategy("string")
                                    .build())
                                .build())
                            .build())
                        .build())
                    .smartscapeEdge(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdgeArgs.builder()
                        .edgeType("string")
                        .sourceIdFieldName("string")
                        .sourceType("string")
                        .targetIdFieldName("string")
                        .targetType("string")
                        .build())
                    .smartscapeNode(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeArgs.builder()
                        .extractNode(false)
                        .idComponents(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs.builder()
                            .idComponents(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs.builder()
                                .idComponent("string")
                                .referencedFieldName("string")
                                .build())
                            .build())
                        .nodeIdFieldName("string")
                        .nodeType("string")
                        .fieldsToExtract(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs.builder()
                            .smartscapeFieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs.builder()
                                .referencedFieldName("string")
                                .fieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .nodeName(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .staticEdgesToExtract(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs.builder()
                            .smartscapeStaticEdgeExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs.builder()
                                .edgeType("string")
                                .targetIdFieldName("string")
                                .targetType("string")
                                .build())
                            .build())
                        .build())
                    .technology(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnologyArgs.builder()
                        .technologyId("string")
                        .customMatcher("string")
                        .build())
                    .bizevent(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventArgs.builder()
                        .eventProvider(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .eventType(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeArgs.builder()
                            .type("string")
                            .constant("string")
                            .field(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeFieldArgs.builder()
                                .sourceFieldName("string")
                                .defaultValue("string")
                                .build())
                            .multiValueConstants("string")
                            .build())
                        .fieldExtraction(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionArgs.builder()
                            .type("string")
                            .excludes("string")
                            .include(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs.builder()
                                .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeFieldExtractionEntryArgs.builder()
                                    .constantFieldName("string")
                                    .constantValue("string")
                                    .defaultValue("string")
                                    .destinationFieldName("string")
                                    .extractionType("string")
                                    .sourceFieldName("string")
                                    .strategy("string")
                                    .build())
                                .build())
                            .build())
                        .build())
                    .valueMetric(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricArgs.builder()
                        .field("string")
                        .metricKey("string")
                        .defaultValue("string")
                        .dimensions(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsArgs.builder()
                            .fieldExtractionEntries(OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsFieldExtractionEntryArgs.builder()
                                .constantFieldName("string")
                                .constantValue("string")
                                .defaultValue("string")
                                .destinationFieldName("string")
                                .extractionType("string")
                                .sourceFieldName("string")
                                .strategy("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .build())
            .build())
        .build());
    
    openpipeline_v2_system_events_dataforwarding_resource = dynatrace.OpenpipelineV2SystemEventsDataforwarding("openpipelineV2SystemEventsDataforwardingResource",
        forwarding_name="string",
        data_forwarding_type="string",
        matcher="string",
        enabled=False,
        bulk_pattern="string",
        cloud_vendor_type="string",
        azure_connection={
            "connection_id": "string",
            "container_url": "string",
        },
        gcp_connection={
            "bucket_name": "string",
            "connection_id": "string",
        },
        bulk_size=0,
        aws_connection={
            "arn": "string",
            "connection_id": "string",
        },
        builtin_pipelines=["string"],
        ingest_sources=["string"],
        builtin_ingest_sources=["string"],
        pipelines=["string"],
        processing={
            "processors": {
                "processors": [{
                    "description": "string",
                    "type": "string",
                    "id": "string",
                    "enabled": False,
                    "dql": {
                        "script": "string",
                    },
                    "sample_data": "string",
                    "counter_metric": {
                        "metric_key": "string",
                        "dimensions": {
                            "field_extraction_entries": [{
                                "constant_field_name": "string",
                                "constant_value": "string",
                                "default_value": "string",
                                "destination_field_name": "string",
                                "extraction_type": "string",
                                "source_field_name": "string",
                                "strategy": "string",
                            }],
                        },
                    },
                    "azure_log_forwarding": {
                        "field_extraction": {
                            "type": "string",
                            "excludes": ["string"],
                            "include": {
                                "field_extraction_entries": [{
                                    "constant_field_name": "string",
                                    "constant_value": "string",
                                    "default_value": "string",
                                    "destination_field_name": "string",
                                    "extraction_type": "string",
                                    "source_field_name": "string",
                                    "strategy": "string",
                                }],
                            },
                        },
                        "forwarder_config_id": "string",
                    },
                    "cost_allocation": {
                        "value": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                    },
                    "fields_add": {
                        "fields": {
                            "fields": [{
                                "name": "string",
                                "value": "string",
                            }],
                        },
                    },
                    "fields_remove": {
                        "fields": ["string"],
                    },
                    "fields_rename": {
                        "fields": {
                            "fields": [{
                                "from_name": "string",
                                "to_name": "string",
                            }],
                        },
                    },
                    "geo_lookup": {
                        "ip_field_key": "string",
                        "geo_field_prefix": "string",
                        "output_fields": ["string"],
                    },
                    "histogram_metric": {
                        "field": "string",
                        "metric_key": "string",
                        "default_value": "string",
                        "dimensions": {
                            "field_extraction_entries": [{
                                "constant_field_name": "string",
                                "constant_value": "string",
                                "default_value": "string",
                                "destination_field_name": "string",
                                "extraction_type": "string",
                                "source_field_name": "string",
                                "strategy": "string",
                            }],
                        },
                    },
                    "bucket_assignment": {
                        "bucket_name": "string",
                    },
                    "matcher": "string",
                    "product_allocation": {
                        "value": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                    },
                    "davis": {
                        "properties": {
                            "properties": [{
                                "key": "string",
                                "strategy": "string",
                                "value": "string",
                            }],
                        },
                    },
                    "sampling_aware_counter_metric": {
                        "metric_key": "string",
                        "aggregation": "string",
                        "dimensions": {
                            "field_extraction_entries": [{
                                "constant_field_name": "string",
                                "constant_value": "string",
                                "default_value": "string",
                                "destination_field_name": "string",
                                "extraction_type": "string",
                                "source_field_name": "string",
                                "strategy": "string",
                            }],
                        },
                        "sampling": "string",
                    },
                    "sampling_aware_histogram_metric": {
                        "measurement": "string",
                        "metric_key": "string",
                        "aggregation": "string",
                        "default_value": "string",
                        "dimensions": {
                            "field_extraction_entries": [{
                                "constant_field_name": "string",
                                "constant_value": "string",
                                "default_value": "string",
                                "destination_field_name": "string",
                                "extraction_type": "string",
                                "source_field_name": "string",
                                "strategy": "string",
                            }],
                        },
                        "field": "string",
                        "sampling": "string",
                    },
                    "sampling_aware_value_metric": {
                        "measurement": "string",
                        "metric_key": "string",
                        "aggregation": "string",
                        "default_value": "string",
                        "dimensions": {
                            "field_extraction_entries": [{
                                "constant_field_name": "string",
                                "constant_value": "string",
                                "default_value": "string",
                                "destination_field_name": "string",
                                "extraction_type": "string",
                                "source_field_name": "string",
                                "strategy": "string",
                            }],
                        },
                        "field": "string",
                        "sampling": "string",
                    },
                    "sdlc_event": {
                        "event_category": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "event_provider": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "event_status": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "event_type": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "field_extraction": {
                            "type": "string",
                            "excludes": ["string"],
                            "include": {
                                "field_extraction_entries": [{
                                    "constant_field_name": "string",
                                    "constant_value": "string",
                                    "default_value": "string",
                                    "destination_field_name": "string",
                                    "extraction_type": "string",
                                    "source_field_name": "string",
                                    "strategy": "string",
                                }],
                            },
                        },
                    },
                    "security_context": {
                        "value": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                    },
                    "security_event": {
                        "field_extraction": {
                            "type": "string",
                            "excludes": ["string"],
                            "include": {
                                "field_extraction_entries": [{
                                    "constant_field_name": "string",
                                    "constant_value": "string",
                                    "default_value": "string",
                                    "destination_field_name": "string",
                                    "extraction_type": "string",
                                    "source_field_name": "string",
                                    "strategy": "string",
                                }],
                            },
                        },
                    },
                    "smartscape_edge": {
                        "edge_type": "string",
                        "source_id_field_name": "string",
                        "source_type": "string",
                        "target_id_field_name": "string",
                        "target_type": "string",
                    },
                    "smartscape_node": {
                        "extract_node": False,
                        "id_components": {
                            "id_components": [{
                                "id_component": "string",
                                "referenced_field_name": "string",
                            }],
                        },
                        "node_id_field_name": "string",
                        "node_type": "string",
                        "fields_to_extract": {
                            "smartscape_field_extraction_entries": [{
                                "referenced_field_name": "string",
                                "field_name": "string",
                                "strategy": "string",
                            }],
                        },
                        "node_name": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "static_edges_to_extract": {
                            "smartscape_static_edge_extraction_entries": [{
                                "edge_type": "string",
                                "target_id_field_name": "string",
                                "target_type": "string",
                            }],
                        },
                    },
                    "technology": {
                        "technology_id": "string",
                        "custom_matcher": "string",
                    },
                    "bizevent": {
                        "event_provider": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "event_type": {
                            "type": "string",
                            "constant": "string",
                            "field": {
                                "source_field_name": "string",
                                "default_value": "string",
                            },
                            "multi_value_constants": ["string"],
                        },
                        "field_extraction": {
                            "type": "string",
                            "excludes": ["string"],
                            "include": {
                                "field_extraction_entries": [{
                                    "constant_field_name": "string",
                                    "constant_value": "string",
                                    "default_value": "string",
                                    "destination_field_name": "string",
                                    "extraction_type": "string",
                                    "source_field_name": "string",
                                    "strategy": "string",
                                }],
                            },
                        },
                    },
                    "value_metric": {
                        "field": "string",
                        "metric_key": "string",
                        "default_value": "string",
                        "dimensions": {
                            "field_extraction_entries": [{
                                "constant_field_name": "string",
                                "constant_value": "string",
                                "default_value": "string",
                                "destination_field_name": "string",
                                "extraction_type": "string",
                                "source_field_name": "string",
                                "strategy": "string",
                            }],
                        },
                    },
                }],
            },
        })
    
    const openpipelineV2SystemEventsDataforwardingResource = new dynatrace.OpenpipelineV2SystemEventsDataforwarding("openpipelineV2SystemEventsDataforwardingResource", {
        forwardingName: "string",
        dataForwardingType: "string",
        matcher: "string",
        enabled: false,
        bulkPattern: "string",
        cloudVendorType: "string",
        azureConnection: {
            connectionId: "string",
            containerUrl: "string",
        },
        gcpConnection: {
            bucketName: "string",
            connectionId: "string",
        },
        bulkSize: 0,
        awsConnection: {
            arn: "string",
            connectionId: "string",
        },
        builtinPipelines: ["string"],
        ingestSources: ["string"],
        builtinIngestSources: ["string"],
        pipelines: ["string"],
        processing: {
            processors: {
                processors: [{
                    description: "string",
                    type: "string",
                    id: "string",
                    enabled: false,
                    dql: {
                        script: "string",
                    },
                    sampleData: "string",
                    counterMetric: {
                        metricKey: "string",
                        dimensions: {
                            fieldExtractionEntries: [{
                                constantFieldName: "string",
                                constantValue: "string",
                                defaultValue: "string",
                                destinationFieldName: "string",
                                extractionType: "string",
                                sourceFieldName: "string",
                                strategy: "string",
                            }],
                        },
                    },
                    azureLogForwarding: {
                        fieldExtraction: {
                            type: "string",
                            excludes: ["string"],
                            include: {
                                fieldExtractionEntries: [{
                                    constantFieldName: "string",
                                    constantValue: "string",
                                    defaultValue: "string",
                                    destinationFieldName: "string",
                                    extractionType: "string",
                                    sourceFieldName: "string",
                                    strategy: "string",
                                }],
                            },
                        },
                        forwarderConfigId: "string",
                    },
                    costAllocation: {
                        value: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                    },
                    fieldsAdd: {
                        fields: {
                            fields: [{
                                name: "string",
                                value: "string",
                            }],
                        },
                    },
                    fieldsRemove: {
                        fields: ["string"],
                    },
                    fieldsRename: {
                        fields: {
                            fields: [{
                                fromName: "string",
                                toName: "string",
                            }],
                        },
                    },
                    geoLookup: {
                        ipFieldKey: "string",
                        geoFieldPrefix: "string",
                        outputFields: ["string"],
                    },
                    histogramMetric: {
                        field: "string",
                        metricKey: "string",
                        defaultValue: "string",
                        dimensions: {
                            fieldExtractionEntries: [{
                                constantFieldName: "string",
                                constantValue: "string",
                                defaultValue: "string",
                                destinationFieldName: "string",
                                extractionType: "string",
                                sourceFieldName: "string",
                                strategy: "string",
                            }],
                        },
                    },
                    bucketAssignment: {
                        bucketName: "string",
                    },
                    matcher: "string",
                    productAllocation: {
                        value: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                    },
                    davis: {
                        properties: {
                            properties: [{
                                key: "string",
                                strategy: "string",
                                value: "string",
                            }],
                        },
                    },
                    samplingAwareCounterMetric: {
                        metricKey: "string",
                        aggregation: "string",
                        dimensions: {
                            fieldExtractionEntries: [{
                                constantFieldName: "string",
                                constantValue: "string",
                                defaultValue: "string",
                                destinationFieldName: "string",
                                extractionType: "string",
                                sourceFieldName: "string",
                                strategy: "string",
                            }],
                        },
                        sampling: "string",
                    },
                    samplingAwareHistogramMetric: {
                        measurement: "string",
                        metricKey: "string",
                        aggregation: "string",
                        defaultValue: "string",
                        dimensions: {
                            fieldExtractionEntries: [{
                                constantFieldName: "string",
                                constantValue: "string",
                                defaultValue: "string",
                                destinationFieldName: "string",
                                extractionType: "string",
                                sourceFieldName: "string",
                                strategy: "string",
                            }],
                        },
                        field: "string",
                        sampling: "string",
                    },
                    samplingAwareValueMetric: {
                        measurement: "string",
                        metricKey: "string",
                        aggregation: "string",
                        defaultValue: "string",
                        dimensions: {
                            fieldExtractionEntries: [{
                                constantFieldName: "string",
                                constantValue: "string",
                                defaultValue: "string",
                                destinationFieldName: "string",
                                extractionType: "string",
                                sourceFieldName: "string",
                                strategy: "string",
                            }],
                        },
                        field: "string",
                        sampling: "string",
                    },
                    sdlcEvent: {
                        eventCategory: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        eventProvider: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        eventStatus: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        eventType: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        fieldExtraction: {
                            type: "string",
                            excludes: ["string"],
                            include: {
                                fieldExtractionEntries: [{
                                    constantFieldName: "string",
                                    constantValue: "string",
                                    defaultValue: "string",
                                    destinationFieldName: "string",
                                    extractionType: "string",
                                    sourceFieldName: "string",
                                    strategy: "string",
                                }],
                            },
                        },
                    },
                    securityContext: {
                        value: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                    },
                    securityEvent: {
                        fieldExtraction: {
                            type: "string",
                            excludes: ["string"],
                            include: {
                                fieldExtractionEntries: [{
                                    constantFieldName: "string",
                                    constantValue: "string",
                                    defaultValue: "string",
                                    destinationFieldName: "string",
                                    extractionType: "string",
                                    sourceFieldName: "string",
                                    strategy: "string",
                                }],
                            },
                        },
                    },
                    smartscapeEdge: {
                        edgeType: "string",
                        sourceIdFieldName: "string",
                        sourceType: "string",
                        targetIdFieldName: "string",
                        targetType: "string",
                    },
                    smartscapeNode: {
                        extractNode: false,
                        idComponents: {
                            idComponents: [{
                                idComponent: "string",
                                referencedFieldName: "string",
                            }],
                        },
                        nodeIdFieldName: "string",
                        nodeType: "string",
                        fieldsToExtract: {
                            smartscapeFieldExtractionEntries: [{
                                referencedFieldName: "string",
                                fieldName: "string",
                                strategy: "string",
                            }],
                        },
                        nodeName: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        staticEdgesToExtract: {
                            smartscapeStaticEdgeExtractionEntries: [{
                                edgeType: "string",
                                targetIdFieldName: "string",
                                targetType: "string",
                            }],
                        },
                    },
                    technology: {
                        technologyId: "string",
                        customMatcher: "string",
                    },
                    bizevent: {
                        eventProvider: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        eventType: {
                            type: "string",
                            constant: "string",
                            field: {
                                sourceFieldName: "string",
                                defaultValue: "string",
                            },
                            multiValueConstants: ["string"],
                        },
                        fieldExtraction: {
                            type: "string",
                            excludes: ["string"],
                            include: {
                                fieldExtractionEntries: [{
                                    constantFieldName: "string",
                                    constantValue: "string",
                                    defaultValue: "string",
                                    destinationFieldName: "string",
                                    extractionType: "string",
                                    sourceFieldName: "string",
                                    strategy: "string",
                                }],
                            },
                        },
                    },
                    valueMetric: {
                        field: "string",
                        metricKey: "string",
                        defaultValue: "string",
                        dimensions: {
                            fieldExtractionEntries: [{
                                constantFieldName: "string",
                                constantValue: "string",
                                defaultValue: "string",
                                destinationFieldName: "string",
                                extractionType: "string",
                                sourceFieldName: "string",
                                strategy: "string",
                            }],
                        },
                    },
                }],
            },
        },
    });
    
    type: dynatrace:OpenpipelineV2SystemEventsDataforwarding
    properties:
        awsConnection:
            arn: string
            connectionId: string
        azureConnection:
            connectionId: string
            containerUrl: string
        builtinIngestSources:
            - string
        builtinPipelines:
            - string
        bulkPattern: string
        bulkSize: 0
        cloudVendorType: string
        dataForwardingType: string
        enabled: false
        forwardingName: string
        gcpConnection:
            bucketName: string
            connectionId: string
        ingestSources:
            - string
        matcher: string
        pipelines:
            - string
        processing:
            processors:
                processors:
                    - azureLogForwarding:
                        fieldExtraction:
                            excludes:
                                - string
                            include:
                                fieldExtractionEntries:
                                    - constantFieldName: string
                                      constantValue: string
                                      defaultValue: string
                                      destinationFieldName: string
                                      extractionType: string
                                      sourceFieldName: string
                                      strategy: string
                            type: string
                        forwarderConfigId: string
                      bizevent:
                        eventProvider:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        eventType:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        fieldExtraction:
                            excludes:
                                - string
                            include:
                                fieldExtractionEntries:
                                    - constantFieldName: string
                                      constantValue: string
                                      defaultValue: string
                                      destinationFieldName: string
                                      extractionType: string
                                      sourceFieldName: string
                                      strategy: string
                            type: string
                      bucketAssignment:
                        bucketName: string
                      costAllocation:
                        value:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                      counterMetric:
                        dimensions:
                            fieldExtractionEntries:
                                - constantFieldName: string
                                  constantValue: string
                                  defaultValue: string
                                  destinationFieldName: string
                                  extractionType: string
                                  sourceFieldName: string
                                  strategy: string
                        metricKey: string
                      davis:
                        properties:
                            properties:
                                - key: string
                                  strategy: string
                                  value: string
                      description: string
                      dql:
                        script: string
                      enabled: false
                      fieldsAdd:
                        fields:
                            fields:
                                - name: string
                                  value: string
                      fieldsRemove:
                        fields:
                            - string
                      fieldsRename:
                        fields:
                            fields:
                                - fromName: string
                                  toName: string
                      geoLookup:
                        geoFieldPrefix: string
                        ipFieldKey: string
                        outputFields:
                            - string
                      histogramMetric:
                        defaultValue: string
                        dimensions:
                            fieldExtractionEntries:
                                - constantFieldName: string
                                  constantValue: string
                                  defaultValue: string
                                  destinationFieldName: string
                                  extractionType: string
                                  sourceFieldName: string
                                  strategy: string
                        field: string
                        metricKey: string
                      id: string
                      matcher: string
                      productAllocation:
                        value:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                      sampleData: string
                      samplingAwareCounterMetric:
                        aggregation: string
                        dimensions:
                            fieldExtractionEntries:
                                - constantFieldName: string
                                  constantValue: string
                                  defaultValue: string
                                  destinationFieldName: string
                                  extractionType: string
                                  sourceFieldName: string
                                  strategy: string
                        metricKey: string
                        sampling: string
                      samplingAwareHistogramMetric:
                        aggregation: string
                        defaultValue: string
                        dimensions:
                            fieldExtractionEntries:
                                - constantFieldName: string
                                  constantValue: string
                                  defaultValue: string
                                  destinationFieldName: string
                                  extractionType: string
                                  sourceFieldName: string
                                  strategy: string
                        field: string
                        measurement: string
                        metricKey: string
                        sampling: string
                      samplingAwareValueMetric:
                        aggregation: string
                        defaultValue: string
                        dimensions:
                            fieldExtractionEntries:
                                - constantFieldName: string
                                  constantValue: string
                                  defaultValue: string
                                  destinationFieldName: string
                                  extractionType: string
                                  sourceFieldName: string
                                  strategy: string
                        field: string
                        measurement: string
                        metricKey: string
                        sampling: string
                      sdlcEvent:
                        eventCategory:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        eventProvider:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        eventStatus:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        eventType:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        fieldExtraction:
                            excludes:
                                - string
                            include:
                                fieldExtractionEntries:
                                    - constantFieldName: string
                                      constantValue: string
                                      defaultValue: string
                                      destinationFieldName: string
                                      extractionType: string
                                      sourceFieldName: string
                                      strategy: string
                            type: string
                      securityContext:
                        value:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                      securityEvent:
                        fieldExtraction:
                            excludes:
                                - string
                            include:
                                fieldExtractionEntries:
                                    - constantFieldName: string
                                      constantValue: string
                                      defaultValue: string
                                      destinationFieldName: string
                                      extractionType: string
                                      sourceFieldName: string
                                      strategy: string
                            type: string
                      smartscapeEdge:
                        edgeType: string
                        sourceIdFieldName: string
                        sourceType: string
                        targetIdFieldName: string
                        targetType: string
                      smartscapeNode:
                        extractNode: false
                        fieldsToExtract:
                            smartscapeFieldExtractionEntries:
                                - fieldName: string
                                  referencedFieldName: string
                                  strategy: string
                        idComponents:
                            idComponents:
                                - idComponent: string
                                  referencedFieldName: string
                        nodeIdFieldName: string
                        nodeName:
                            constant: string
                            field:
                                defaultValue: string
                                sourceFieldName: string
                            multiValueConstants:
                                - string
                            type: string
                        nodeType: string
                        staticEdgesToExtract:
                            smartscapeStaticEdgeExtractionEntries:
                                - edgeType: string
                                  targetIdFieldName: string
                                  targetType: string
                      technology:
                        customMatcher: string
                        technologyId: string
                      type: string
                      valueMetric:
                        defaultValue: string
                        dimensions:
                            fieldExtractionEntries:
                                - constantFieldName: string
                                  constantValue: string
                                  defaultValue: string
                                  destinationFieldName: string
                                  extractionType: string
                                  sourceFieldName: string
                                  strategy: string
                        field: string
                        metricKey: string
    

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

    BulkPattern string
    Segmentation and prefix of the data
    CloudVendorType string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    DataForwardingType string
    Pipeline Type. Possible values: processed, raw
    Enabled bool
    This setting is enabled (true) or disabled (false)
    ForwardingName string
    Forwarding name
    Matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    AwsConnection Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingAwsConnection
    AWS Connection
    AzureConnection Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingAzureConnection
    Azure Connection
    BuiltinIngestSources List<string>
    List of built-in ingest sources
    BuiltinPipelines List<string>
    Built-in pipelines
    BulkSize int
    Bulk size for transmission
    GcpConnection Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingGcpConnection
    GCP Connection
    IngestSources List<string>
    List of ingest sources
    Pipelines List<string>
    Pipelines
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessing
    Processing
    BulkPattern string
    Segmentation and prefix of the data
    CloudVendorType string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    DataForwardingType string
    Pipeline Type. Possible values: processed, raw
    Enabled bool
    This setting is enabled (true) or disabled (false)
    ForwardingName string
    Forwarding name
    Matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    AwsConnection OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs
    AWS Connection
    AzureConnection OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs
    Azure Connection
    BuiltinIngestSources []string
    List of built-in ingest sources
    BuiltinPipelines []string
    Built-in pipelines
    BulkSize int
    Bulk size for transmission
    GcpConnection OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs
    GCP Connection
    IngestSources []string
    List of ingest sources
    Pipelines []string
    Pipelines
    Processing OpenpipelineV2SystemEventsDataforwardingProcessingArgs
    Processing
    bulk_pattern string
    Segmentation and prefix of the data
    cloud_vendor_type string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    data_forwarding_type string
    Pipeline Type. Possible values: processed, raw
    enabled bool
    This setting is enabled (true) or disabled (false)
    forwarding_name string
    Forwarding name
    matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    aws_connection object
    AWS Connection
    azure_connection object
    Azure Connection
    builtin_ingest_sources list(string)
    List of built-in ingest sources
    builtin_pipelines list(string)
    Built-in pipelines
    bulk_size number
    Bulk size for transmission
    gcp_connection object
    GCP Connection
    ingest_sources list(string)
    List of ingest sources
    pipelines list(string)
    Pipelines
    processing object
    Processing
    bulkPattern String
    Segmentation and prefix of the data
    cloudVendorType String
    Cloud Vendor Type. Possible values: aws, azure, gcp
    dataForwardingType String
    Pipeline Type. Possible values: processed, raw
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    forwardingName String
    Forwarding name
    matcher String
    Query which determines whether the record should be routed to the target pipeline of this rule.
    awsConnection OpenpipelineV2SystemEventsDataforwardingAwsConnection
    AWS Connection
    azureConnection OpenpipelineV2SystemEventsDataforwardingAzureConnection
    Azure Connection
    builtinIngestSources List<String>
    List of built-in ingest sources
    builtinPipelines List<String>
    Built-in pipelines
    bulkSize Integer
    Bulk size for transmission
    gcpConnection OpenpipelineV2SystemEventsDataforwardingGcpConnection
    GCP Connection
    ingestSources List<String>
    List of ingest sources
    pipelines List<String>
    Pipelines
    processing OpenpipelineV2SystemEventsDataforwardingProcessing
    Processing
    bulkPattern string
    Segmentation and prefix of the data
    cloudVendorType string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    dataForwardingType string
    Pipeline Type. Possible values: processed, raw
    enabled boolean
    This setting is enabled (true) or disabled (false)
    forwardingName string
    Forwarding name
    matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    awsConnection OpenpipelineV2SystemEventsDataforwardingAwsConnection
    AWS Connection
    azureConnection OpenpipelineV2SystemEventsDataforwardingAzureConnection
    Azure Connection
    builtinIngestSources string[]
    List of built-in ingest sources
    builtinPipelines string[]
    Built-in pipelines
    bulkSize number
    Bulk size for transmission
    gcpConnection OpenpipelineV2SystemEventsDataforwardingGcpConnection
    GCP Connection
    ingestSources string[]
    List of ingest sources
    pipelines string[]
    Pipelines
    processing OpenpipelineV2SystemEventsDataforwardingProcessing
    Processing
    bulk_pattern str
    Segmentation and prefix of the data
    cloud_vendor_type str
    Cloud Vendor Type. Possible values: aws, azure, gcp
    data_forwarding_type str
    Pipeline Type. Possible values: processed, raw
    enabled bool
    This setting is enabled (true) or disabled (false)
    forwarding_name str
    Forwarding name
    matcher str
    Query which determines whether the record should be routed to the target pipeline of this rule.
    aws_connection OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs
    AWS Connection
    azure_connection OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs
    Azure Connection
    builtin_ingest_sources Sequence[str]
    List of built-in ingest sources
    builtin_pipelines Sequence[str]
    Built-in pipelines
    bulk_size int
    Bulk size for transmission
    gcp_connection OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs
    GCP Connection
    ingest_sources Sequence[str]
    List of ingest sources
    pipelines Sequence[str]
    Pipelines
    processing OpenpipelineV2SystemEventsDataforwardingProcessingArgs
    Processing
    bulkPattern String
    Segmentation and prefix of the data
    cloudVendorType String
    Cloud Vendor Type. Possible values: aws, azure, gcp
    dataForwardingType String
    Pipeline Type. Possible values: processed, raw
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    forwardingName String
    Forwarding name
    matcher String
    Query which determines whether the record should be routed to the target pipeline of this rule.
    awsConnection Property Map
    AWS Connection
    azureConnection Property Map
    Azure Connection
    builtinIngestSources List<String>
    List of built-in ingest sources
    builtinPipelines List<String>
    Built-in pipelines
    bulkSize Number
    Bulk size for transmission
    gcpConnection Property Map
    GCP Connection
    ingestSources List<String>
    List of ingest sources
    pipelines List<String>
    Pipelines
    processing Property Map
    Processing

    Outputs

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

    Get an existing OpenpipelineV2SystemEventsDataforwarding 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?: OpenpipelineV2SystemEventsDataforwardingState, opts?: CustomResourceOptions): OpenpipelineV2SystemEventsDataforwarding
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws_connection: Optional[OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs] = None,
            azure_connection: Optional[OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs] = None,
            builtin_ingest_sources: Optional[Sequence[str]] = None,
            builtin_pipelines: Optional[Sequence[str]] = None,
            bulk_pattern: Optional[str] = None,
            bulk_size: Optional[int] = None,
            cloud_vendor_type: Optional[str] = None,
            data_forwarding_type: Optional[str] = None,
            enabled: Optional[bool] = None,
            forwarding_name: Optional[str] = None,
            gcp_connection: Optional[OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs] = None,
            ingest_sources: Optional[Sequence[str]] = None,
            matcher: Optional[str] = None,
            pipelines: Optional[Sequence[str]] = None,
            processing: Optional[OpenpipelineV2SystemEventsDataforwardingProcessingArgs] = None) -> OpenpipelineV2SystemEventsDataforwarding
    func GetOpenpipelineV2SystemEventsDataforwarding(ctx *Context, name string, id IDInput, state *OpenpipelineV2SystemEventsDataforwardingState, opts ...ResourceOption) (*OpenpipelineV2SystemEventsDataforwarding, error)
    public static OpenpipelineV2SystemEventsDataforwarding Get(string name, Input<string> id, OpenpipelineV2SystemEventsDataforwardingState? state, CustomResourceOptions? opts = null)
    public static OpenpipelineV2SystemEventsDataforwarding get(String name, Output<String> id, OpenpipelineV2SystemEventsDataforwardingState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:OpenpipelineV2SystemEventsDataforwarding    get:      id: ${id}
    import {
      to = dynatrace_openpipelinev2systemeventsdataforwarding.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:
    AwsConnection Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingAwsConnection
    AWS Connection
    AzureConnection Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingAzureConnection
    Azure Connection
    BuiltinIngestSources List<string>
    List of built-in ingest sources
    BuiltinPipelines List<string>
    Built-in pipelines
    BulkPattern string
    Segmentation and prefix of the data
    BulkSize int
    Bulk size for transmission
    CloudVendorType string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    DataForwardingType string
    Pipeline Type. Possible values: processed, raw
    Enabled bool
    This setting is enabled (true) or disabled (false)
    ForwardingName string
    Forwarding name
    GcpConnection Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingGcpConnection
    GCP Connection
    IngestSources List<string>
    List of ingest sources
    Matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    Pipelines List<string>
    Pipelines
    Processing Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessing
    Processing
    AwsConnection OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs
    AWS Connection
    AzureConnection OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs
    Azure Connection
    BuiltinIngestSources []string
    List of built-in ingest sources
    BuiltinPipelines []string
    Built-in pipelines
    BulkPattern string
    Segmentation and prefix of the data
    BulkSize int
    Bulk size for transmission
    CloudVendorType string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    DataForwardingType string
    Pipeline Type. Possible values: processed, raw
    Enabled bool
    This setting is enabled (true) or disabled (false)
    ForwardingName string
    Forwarding name
    GcpConnection OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs
    GCP Connection
    IngestSources []string
    List of ingest sources
    Matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    Pipelines []string
    Pipelines
    Processing OpenpipelineV2SystemEventsDataforwardingProcessingArgs
    Processing
    aws_connection object
    AWS Connection
    azure_connection object
    Azure Connection
    builtin_ingest_sources list(string)
    List of built-in ingest sources
    builtin_pipelines list(string)
    Built-in pipelines
    bulk_pattern string
    Segmentation and prefix of the data
    bulk_size number
    Bulk size for transmission
    cloud_vendor_type string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    data_forwarding_type string
    Pipeline Type. Possible values: processed, raw
    enabled bool
    This setting is enabled (true) or disabled (false)
    forwarding_name string
    Forwarding name
    gcp_connection object
    GCP Connection
    ingest_sources list(string)
    List of ingest sources
    matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    pipelines list(string)
    Pipelines
    processing object
    Processing
    awsConnection OpenpipelineV2SystemEventsDataforwardingAwsConnection
    AWS Connection
    azureConnection OpenpipelineV2SystemEventsDataforwardingAzureConnection
    Azure Connection
    builtinIngestSources List<String>
    List of built-in ingest sources
    builtinPipelines List<String>
    Built-in pipelines
    bulkPattern String
    Segmentation and prefix of the data
    bulkSize Integer
    Bulk size for transmission
    cloudVendorType String
    Cloud Vendor Type. Possible values: aws, azure, gcp
    dataForwardingType String
    Pipeline Type. Possible values: processed, raw
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    forwardingName String
    Forwarding name
    gcpConnection OpenpipelineV2SystemEventsDataforwardingGcpConnection
    GCP Connection
    ingestSources List<String>
    List of ingest sources
    matcher String
    Query which determines whether the record should be routed to the target pipeline of this rule.
    pipelines List<String>
    Pipelines
    processing OpenpipelineV2SystemEventsDataforwardingProcessing
    Processing
    awsConnection OpenpipelineV2SystemEventsDataforwardingAwsConnection
    AWS Connection
    azureConnection OpenpipelineV2SystemEventsDataforwardingAzureConnection
    Azure Connection
    builtinIngestSources string[]
    List of built-in ingest sources
    builtinPipelines string[]
    Built-in pipelines
    bulkPattern string
    Segmentation and prefix of the data
    bulkSize number
    Bulk size for transmission
    cloudVendorType string
    Cloud Vendor Type. Possible values: aws, azure, gcp
    dataForwardingType string
    Pipeline Type. Possible values: processed, raw
    enabled boolean
    This setting is enabled (true) or disabled (false)
    forwardingName string
    Forwarding name
    gcpConnection OpenpipelineV2SystemEventsDataforwardingGcpConnection
    GCP Connection
    ingestSources string[]
    List of ingest sources
    matcher string
    Query which determines whether the record should be routed to the target pipeline of this rule.
    pipelines string[]
    Pipelines
    processing OpenpipelineV2SystemEventsDataforwardingProcessing
    Processing
    aws_connection OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs
    AWS Connection
    azure_connection OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs
    Azure Connection
    builtin_ingest_sources Sequence[str]
    List of built-in ingest sources
    builtin_pipelines Sequence[str]
    Built-in pipelines
    bulk_pattern str
    Segmentation and prefix of the data
    bulk_size int
    Bulk size for transmission
    cloud_vendor_type str
    Cloud Vendor Type. Possible values: aws, azure, gcp
    data_forwarding_type str
    Pipeline Type. Possible values: processed, raw
    enabled bool
    This setting is enabled (true) or disabled (false)
    forwarding_name str
    Forwarding name
    gcp_connection OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs
    GCP Connection
    ingest_sources Sequence[str]
    List of ingest sources
    matcher str
    Query which determines whether the record should be routed to the target pipeline of this rule.
    pipelines Sequence[str]
    Pipelines
    processing OpenpipelineV2SystemEventsDataforwardingProcessingArgs
    Processing
    awsConnection Property Map
    AWS Connection
    azureConnection Property Map
    Azure Connection
    builtinIngestSources List<String>
    List of built-in ingest sources
    builtinPipelines List<String>
    Built-in pipelines
    bulkPattern String
    Segmentation and prefix of the data
    bulkSize Number
    Bulk size for transmission
    cloudVendorType String
    Cloud Vendor Type. Possible values: aws, azure, gcp
    dataForwardingType String
    Pipeline Type. Possible values: processed, raw
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    forwardingName String
    Forwarding name
    gcpConnection Property Map
    GCP Connection
    ingestSources List<String>
    List of ingest sources
    matcher String
    Query which determines whether the record should be routed to the target pipeline of this rule.
    pipelines List<String>
    Pipelines
    processing Property Map
    Processing

    Supporting Types

    OpenpipelineV2SystemEventsDataforwardingAwsConnection, OpenpipelineV2SystemEventsDataforwardingAwsConnectionArgs

    Arn string
    S3 Bucket ARN
    ConnectionId string
    AWS connection
    Arn string
    S3 Bucket ARN
    ConnectionId string
    AWS connection
    arn string
    S3 Bucket ARN
    connection_id string
    AWS connection
    arn String
    S3 Bucket ARN
    connectionId String
    AWS connection
    arn string
    S3 Bucket ARN
    connectionId string
    AWS connection
    arn str
    S3 Bucket ARN
    connection_id str
    AWS connection
    arn String
    S3 Bucket ARN
    connectionId String
    AWS connection

    OpenpipelineV2SystemEventsDataforwardingAzureConnection, OpenpipelineV2SystemEventsDataforwardingAzureConnectionArgs

    ConnectionId string
    Azure connection
    ContainerUrl string
    Container Connection URL
    ConnectionId string
    Azure connection
    ContainerUrl string
    Container Connection URL
    connection_id string
    Azure connection
    container_url string
    Container Connection URL
    connectionId String
    Azure connection
    containerUrl String
    Container Connection URL
    connectionId string
    Azure connection
    containerUrl string
    Container Connection URL
    connection_id str
    Azure connection
    container_url str
    Container Connection URL
    connectionId String
    Azure connection
    containerUrl String
    Container Connection URL

    OpenpipelineV2SystemEventsDataforwardingGcpConnection, OpenpipelineV2SystemEventsDataforwardingGcpConnectionArgs

    BucketName string
    GCS Bucket Name
    ConnectionId string
    GCP connection
    BucketName string
    GCS Bucket Name
    ConnectionId string
    GCP connection
    bucket_name string
    GCS Bucket Name
    connection_id string
    GCP connection
    bucketName String
    GCS Bucket Name
    connectionId String
    GCP connection
    bucketName string
    GCS Bucket Name
    connectionId string
    GCP connection
    bucket_name str
    GCS Bucket Name
    connection_id str
    GCP connection
    bucketName String
    GCS Bucket Name
    connectionId String
    GCP connection

    OpenpipelineV2SystemEventsDataforwardingProcessing, OpenpipelineV2SystemEventsDataforwardingProcessingArgs

    processors object
    Processors of stage
    processors Property Map
    Processors of stage

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessors, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessor, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorArgs

    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, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    Matcher string
    See our documentation
    ProductAllocation Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric Pulumiverse.Dynatrace.Inputs.OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetric
    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, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    AzureLogForwarding OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    Bizevent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    BucketAssignment OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    CostAllocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    CounterMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    Davis OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    Dql OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDql
    DQL processor attributes
    FieldsAdd OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    FieldsRemove OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    FieldsRename OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    GeoLookup OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    HistogramMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    Matcher string
    See our documentation
    ProductAllocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    SampleData string
    Sample data
    SamplingAwareCounterMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    SamplingAwareHistogramMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    SamplingAwareValueMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    SdlcEvent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    SecurityContext OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    SecurityEvent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    SmartscapeEdge OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    SmartscapeNode OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    Technology OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnology
    Technology processor attributes
    ValueMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetric
    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, 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
    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, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    azureLogForwarding OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    matcher String
    See our documentation
    productAllocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData String
    Sample data
    samplingAwareCounterMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetric
    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, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    azureLogForwarding OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucketAssignment OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    costAllocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counterMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDql
    DQL processor attributes
    fieldsAdd OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fieldsRemove OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fieldsRename OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geoLookup OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogramMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    matcher string
    See our documentation
    productAllocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sampleData string
    Sample data
    samplingAwareCounterMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    samplingAwareHistogramMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    samplingAwareValueMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlcEvent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    securityContext OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    securityEvent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscapeEdge OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscapeNode OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnology
    Technology processor attributes
    valueMetric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetric
    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, noStorage, productAllocation, samplingAwareCounterMetric, samplingAwareHistogramMetric, samplingAwareValueMetric, sdlcEvent, securityContext, securityEvent, smartscapeEdge, smartscapeNode, technology, valueMetric
    azure_log_forwarding OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwarding
    Azure log forwarding processor attributes
    bizevent OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizevent
    Bizevent extraction processor attributes
    bucket_assignment OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignment
    Bucket assignment processor attributes
    cost_allocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocation
    Cost allocation processor attributes
    counter_metric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetric
    Counter metric processor attributes
    davis OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavis
    Davis event extraction processor attributes
    dql OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDql
    DQL processor attributes
    fields_add OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAdd
    Fields add processor attributes
    fields_remove OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemove
    Fields remove processor attributes
    fields_rename OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRename
    Fields rename processor attributes
    geo_lookup OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookup
    Geo lookup processor attributes
    histogram_metric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetric
    Histogram metric processor attributes
    matcher str
    See our documentation
    product_allocation OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocation
    Product allocation processor attributes
    sample_data str
    Sample data
    sampling_aware_counter_metric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetric
    Sampling-aware counter metric processor attributes
    sampling_aware_histogram_metric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetric
    Sampling aware histogram metric processor attributes
    sampling_aware_value_metric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetric
    Sampling aware value metric processor attributes
    sdlc_event OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEvent
    SdlcEvent extraction processor attributes
    security_context OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContext
    Security context processor attributes
    security_event OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEvent
    Security event extraction processor attributes
    smartscape_edge OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdge
    Smartscape edge extraction processor attributes
    smartscape_node OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNode
    Smartscape node extraction processor attributes
    technology OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnology
    Technology processor attributes
    value_metric OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetric
    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, 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
    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizevent, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventProviderFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventEventTypeFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBizeventFieldExtractionIncludeFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorBucketAssignmentArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocation, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCostAllocationValueFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetric, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorCounterMetricDimensionsFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavis, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisArgs

    properties object
    No documentation available
    properties Property Map
    No documentation available

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisProperties, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDavisPropertiesPropertyArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDql, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorDqlArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddArgs

    fields object
    Fields to Add
    fields Property Map
    Fields to Add

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsAddFieldsFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRemoveArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRename, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameArgs

    fields object
    Fields to rename
    fields Property Map
    Fields to rename

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookup, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorGeoLookupArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorHistogramMetricDimensionsFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocation, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorProductAllocationValueFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContext, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityContextValueFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventArgs

    field_extraction object
    Field Extraction

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeFieldExtractionEntryArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeEdgeArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs

    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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnology, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorTechnologyArgs

    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.

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetric, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricArgs

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

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsArgs

    OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsFieldExtractionEntry, OpenpipelineV2SystemEventsDataforwardingProcessingProcessorsProcessorValueMetricDimensionsFieldExtractionEntryArgs

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

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial