published on Friday, Aug 14, 2026 by Pulumiverse
published on Friday, Aug 14, 2026 by Pulumiverse
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
This resource requires the OAuth scopes Read settings (
settings:objects:read) and Write settings (settings:objects:write)
Limitations
Warning If a resource is created using an API token or without setting
DYNATRACE_HTTP_OAUTH_PREFERENCE=true(when both are used), the settings object’s owner will remain empty.
An empty owner implies:
- The settings object becomes public, allowing other users with settings permissions to read and modify it.
- Changing the settings object’s permissions will have no effect, meaning the
dynatrace.SettingsPermissionsresource can’t alter its access.
When a settings object is created using platform credentials:
- The owner is set to the owner of the OAuth client or platform token.
- By default, the settings object is private; only the owner can read and modify it.
- Access modifiers can be managed using the
dynatrace.SettingsPermissionsresource.
We recommend using platform credentials to ensure a correct setup.
In case an API token is needed, we recommend setting DYNATRACE_HTTP_OAUTH_PREFERENCE=true.
Dynatrace Documentation
- OpenPipeline - https://docs.dynatrace.com/docs/platform/openpipeline
Export Example Usage
terraform-provider-dynatrace -export dynatrace.OpenpipelineV2EventsSecurityPipelinesdownloads all existing OpenPipeline definitions for events security pipelines
The full documentation of the export feature is available here.
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const max_pipeline = new dynatrace.OpenpipelineV2EventsSecurityPipelines("max-pipeline", {
displayName: "Warning pipeline",
customId: "pipeline_Warning_pipeline_2773_tf_#name#",
metadataList: {
metadatas: [{
entryKey: "environment",
entryValue: "production",
}],
},
processing: {
processors: {
processors: [
{
type: "drop",
id: "processor_Drop_unnecessary_records_3802",
description: "Drop unnecessary records",
matcher: "not matchesPhrase(record.name, \"Warning\")",
enabled: true,
},
{
type: "fieldsAdd",
id: "processor_Add_warning_flag_5434",
description: "Add warning flag",
matcher: "matchesPhrase(record.name, \"Warning\")",
sampleData: `{
"record.name": "Warning record"
}`,
fieldsAdd: {
fields: {
fields: [{
name: "is_warning",
value: "true",
}],
},
},
enabled: true,
},
{
type: "fieldsRemove",
id: "processor_Remove_details_field_8539",
description: "Remove details field",
sampleData: `{
"record.name": "Warning",
"record.details": "some record details"
}`,
matcher: "isNotNull(record.details)",
fieldsRemove: {
fields: ["record.details"],
},
enabled: true,
},
{
type: "fieldsRename",
id: "processor_Rename_name_to_title_8530",
description: "Rename name to title",
sampleData: `{
"record.name": "Warning"
}`,
matcher: "true",
fieldsRename: {
fields: {
fields: [{
fromName: "record.name",
toName: "record.title",
}],
},
},
enabled: true,
},
{
type: "dql",
id: "processor_Combine_title_and_summary_to_name_8808",
description: "Combine title and summary to name",
sampleData: `{
"record.title": "Warning",
"record.summary": "Request failed"
}`,
matcher: "true",
dql: {
script: "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
enabled: true,
},
],
},
},
davis: {
processors: {
processors: [{
type: "davis",
id: "processor_Create_warning_event_8226",
description: "Create warning event",
matcher: "true",
davis: {
properties: {
properties: [
{
key: "event.type",
value: "CUSTOM_ALERT",
},
{
key: "event.name",
value: "Warning detected",
},
{
key: "event.description",
value: "Warning: {dims:record.summary}",
},
],
},
},
enabled: true,
}],
},
},
metricExtraction: {
processors: {
processors: [
{
type: "counterMetric",
id: "processor_Count_warning_events_6392",
description: "Count warnings",
matcher: "true",
counterMetric: {
metricKey: "warning.count",
dimensions: {
dimensions: [
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.costcenter",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.product",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.security_context",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "record.category",
destinationFieldName: "warning_category",
},
],
},
},
enabled: true,
},
{
type: "valueMetric",
id: "processor_Warning_timeout_1990",
description: "Warning timeout",
matcher: "true",
valueMetric: {
metricKey: "warning.timeout",
field: "recording.timeout_in_min",
defaultValue: "60",
dimensions: {
dimensions: [
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.costcenter",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.product",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.security_context",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "record.category",
destinationFieldName: "warning_category",
},
],
},
},
enabled: true,
},
],
},
},
securityContext: {
processors: {
processors: [
{
type: "securityContext",
id: "processor_Use_dt.security_context_if_set_1080",
description: "Use dt.security_context if set",
matcher: "isNotNull(dt.security_context)",
securityContext: {
value: {
type: "field",
field: {
sourceFieldName: "dt.security_context",
},
},
},
enabled: true,
},
{
type: "securityContext",
id: "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
description: "Assign warnings to ACME teams if no context set",
matcher: "isNull(dt.security_context)",
securityContext: {
value: {
type: "multiValueConstant",
multiValueConstants: [
"ACME1",
"ACME2",
],
},
},
enabled: true,
},
],
},
},
storage: {
processors: {
processors: [{
type: "bucketAssignment",
id: "processor_Add_to_default_bucket_5010",
description: "Add to default bucket",
matcher: "true",
bucketAssignment: {
bucketName: "default_events",
},
enabled: true,
}],
},
},
});
import pulumi
import pulumiverse_dynatrace as dynatrace
max_pipeline = dynatrace.OpenpipelineV2EventsSecurityPipelines("max-pipeline",
display_name="Warning pipeline",
custom_id="pipeline_Warning_pipeline_2773_tf_#name#",
metadata_list={
"metadatas": [{
"entry_key": "environment",
"entry_value": "production",
}],
},
processing={
"processors": {
"processors": [
{
"type": "drop",
"id": "processor_Drop_unnecessary_records_3802",
"description": "Drop unnecessary records",
"matcher": "not matchesPhrase(record.name, \"Warning\")",
"enabled": True,
},
{
"type": "fieldsAdd",
"id": "processor_Add_warning_flag_5434",
"description": "Add warning flag",
"matcher": "matchesPhrase(record.name, \"Warning\")",
"sample_data": """{
"record.name": "Warning record"
}""",
"fields_add": {
"fields": {
"fields": [{
"name": "is_warning",
"value": "true",
}],
},
},
"enabled": True,
},
{
"type": "fieldsRemove",
"id": "processor_Remove_details_field_8539",
"description": "Remove details field",
"sample_data": """{
"record.name": "Warning",
"record.details": "some record details"
}""",
"matcher": "isNotNull(record.details)",
"fields_remove": {
"fields": ["record.details"],
},
"enabled": True,
},
{
"type": "fieldsRename",
"id": "processor_Rename_name_to_title_8530",
"description": "Rename name to title",
"sample_data": """{
"record.name": "Warning"
}""",
"matcher": "true",
"fields_rename": {
"fields": {
"fields": [{
"from_name": "record.name",
"to_name": "record.title",
}],
},
},
"enabled": True,
},
{
"type": "dql",
"id": "processor_Combine_title_and_summary_to_name_8808",
"description": "Combine title and summary to name",
"sample_data": """{
"record.title": "Warning",
"record.summary": "Request failed"
}""",
"matcher": "true",
"dql": {
"script": "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
"enabled": True,
},
],
},
},
davis={
"processors": {
"processors": [{
"type": "davis",
"id": "processor_Create_warning_event_8226",
"description": "Create warning event",
"matcher": "true",
"davis": {
"properties": {
"properties": [
{
"key": "event.type",
"value": "CUSTOM_ALERT",
},
{
"key": "event.name",
"value": "Warning detected",
},
{
"key": "event.description",
"value": "Warning: {dims:record.summary}",
},
],
},
},
"enabled": True,
}],
},
},
metric_extraction={
"processors": {
"processors": [
{
"type": "counterMetric",
"id": "processor_Count_warning_events_6392",
"description": "Count warnings",
"matcher": "true",
"counter_metric": {
"metric_key": "warning.count",
"dimensions": {
"dimensions": [
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.costcenter",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.product",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.security_context",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "record.category",
"destination_field_name": "warning_category",
},
],
},
},
"enabled": True,
},
{
"type": "valueMetric",
"id": "processor_Warning_timeout_1990",
"description": "Warning timeout",
"matcher": "true",
"value_metric": {
"metric_key": "warning.timeout",
"field": "recording.timeout_in_min",
"default_value": "60",
"dimensions": {
"dimensions": [
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.costcenter",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.product",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.security_context",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "record.category",
"destination_field_name": "warning_category",
},
],
},
},
"enabled": True,
},
],
},
},
security_context={
"processors": {
"processors": [
{
"type": "securityContext",
"id": "processor_Use_dt.security_context_if_set_1080",
"description": "Use dt.security_context if set",
"matcher": "isNotNull(dt.security_context)",
"security_context": {
"value": {
"type": "field",
"field": {
"source_field_name": "dt.security_context",
},
},
},
"enabled": True,
},
{
"type": "securityContext",
"id": "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
"description": "Assign warnings to ACME teams if no context set",
"matcher": "isNull(dt.security_context)",
"security_context": {
"value": {
"type": "multiValueConstant",
"multi_value_constants": [
"ACME1",
"ACME2",
],
},
},
"enabled": True,
},
],
},
},
storage={
"processors": {
"processors": [{
"type": "bucketAssignment",
"id": "processor_Add_to_default_bucket_5010",
"description": "Add to default bucket",
"matcher": "true",
"bucket_assignment": {
"bucket_name": "default_events",
},
"enabled": True,
}],
},
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewOpenpipelineV2EventsSecurityPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2EventsSecurityPipelinesArgs{
DisplayName: pulumi.String("Warning pipeline"),
CustomId: pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
MetadataList: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetadataListArgs{
Metadatas: dynatrace.OpenpipelineV2EventsSecurityPipelinesMetadataListMetadataArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetadataListMetadataArgs{
EntryKey: pulumi.String("environment"),
EntryValue: pulumi.String("production"),
},
},
},
Processing: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingArgs{
Processors: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("drop"),
Id: pulumi.String("processor_Drop_unnecessary_records_3802"),
Description: pulumi.String("Drop unnecessary records"),
Matcher: pulumi.String("not matchesPhrase(record.name, \"Warning\")"),
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsAdd"),
Id: pulumi.String("processor_Add_warning_flag_5434"),
Description: pulumi.String("Add warning flag"),
Matcher: pulumi.String("matchesPhrase(record.name, \"Warning\")"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning record\" \n}"),
FieldsAdd: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddArgs{
Fields: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
Fields: dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
Name: pulumi.String("is_warning"),
Value: pulumi.String("true"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsRemove"),
Id: pulumi.String("processor_Remove_details_field_8539"),
Description: pulumi.String("Remove details field"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning\",\n \"record.details\": \"some record details\"\n}"),
Matcher: pulumi.String("isNotNull(record.details)"),
FieldsRemove: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
Fields: pulumi.StringArray{
pulumi.String("record.details"),
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsRename"),
Id: pulumi.String("processor_Rename_name_to_title_8530"),
Description: pulumi.String("Rename name to title"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning\"\n}"),
Matcher: pulumi.String("true"),
FieldsRename: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
Fields: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
Fields: dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
FromName: pulumi.String("record.name"),
ToName: pulumi.String("record.title"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("dql"),
Id: pulumi.String("processor_Combine_title_and_summary_to_name_8808"),
Description: pulumi.String("Combine title and summary to name"),
SampleData: pulumi.String("{\n \"record.title\": \"Warning\",\n \"record.summary\": \"Request failed\"\n}"),
Matcher: pulumi.String("true"),
Dql: &dynatrace.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDqlArgs{
Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
Davis: &dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisArgs{
Processors: &dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorArgs{
Type: pulumi.String("davis"),
Id: pulumi.String("processor_Create_warning_event_8226"),
Description: pulumi.String("Create warning event"),
Matcher: pulumi.String("true"),
Davis: &dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisArgs{
Properties: &dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesArgs{
Properties: dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.type"),
Value: pulumi.String("CUSTOM_ALERT"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.name"),
Value: pulumi.String("Warning detected"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.description"),
Value: pulumi.String("Warning: {dims:record.summary}"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
MetricExtraction: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs{
Processors: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("counterMetric"),
Id: pulumi.String("processor_Count_warning_events_6392"),
Description: pulumi.String("Count warnings"),
Matcher: pulumi.String("true"),
CounterMetric: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
MetricKey: pulumi.String("warning.count"),
Dimensions: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("valueMetric"),
Id: pulumi.String("processor_Warning_timeout_1990"),
Description: pulumi.String("Warning timeout"),
Matcher: pulumi.String("true"),
ValueMetric: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
MetricKey: pulumi.String("warning.timeout"),
Field: pulumi.String("recording.timeout_in_min"),
DefaultValue: pulumi.String("60"),
Dimensions: &dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
SecurityContext: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs{
Processors: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs{
Type: pulumi.String("securityContext"),
Id: pulumi.String("processor_Use_dt.security_context_if_set_1080"),
Description: pulumi.String("Use dt.security_context if set"),
Matcher: pulumi.String("isNotNull(dt.security_context)"),
SecurityContext: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("field"),
Field: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
SourceFieldName: pulumi.String("dt.security_context"),
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs{
Type: pulumi.String("securityContext"),
Id: pulumi.String("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"),
Description: pulumi.String("Assign warnings to ACME teams if no context set"),
Matcher: pulumi.String("isNull(dt.security_context)"),
SecurityContext: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("multiValueConstant"),
MultiValueConstants: pulumi.StringArray{
pulumi.String("ACME1"),
pulumi.String("ACME2"),
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
Storage: &dynatrace.OpenpipelineV2EventsSecurityPipelinesStorageArgs{
Processors: &dynatrace.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorArgs{
Type: pulumi.String("bucketAssignment"),
Id: pulumi.String("processor_Add_to_default_bucket_5010"),
Description: pulumi.String("Add to default bucket"),
Matcher: pulumi.String("true"),
BucketAssignment: &dynatrace.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
BucketName: pulumi.String("default_events"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var max_pipeline = new Dynatrace.OpenpipelineV2EventsSecurityPipelines("max-pipeline", new()
{
DisplayName = "Warning pipeline",
CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
MetadataList = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetadataListArgs
{
Metadatas = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetadataListMetadataArgs
{
EntryKey = "environment",
EntryValue = "production",
},
},
},
Processing = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs
{
Type = "drop",
Id = "processor_Drop_unnecessary_records_3802",
Description = "Drop unnecessary records",
Matcher = "not matchesPhrase(record.name, \"Warning\")",
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsAdd",
Id = "processor_Add_warning_flag_5434",
Description = "Add warning flag",
Matcher = "matchesPhrase(record.name, \"Warning\")",
SampleData = @"{
""record.name"": ""Warning record""
}",
FieldsAdd = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
{
Name = "is_warning",
Value = "true",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRemove",
Id = "processor_Remove_details_field_8539",
Description = "Remove details field",
SampleData = @"{
""record.name"": ""Warning"",
""record.details"": ""some record details""
}",
Matcher = "isNotNull(record.details)",
FieldsRemove = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
{
Fields = new[]
{
"record.details",
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRename",
Id = "processor_Rename_name_to_title_8530",
Description = "Rename name to title",
SampleData = @"{
""record.name"": ""Warning""
}",
Matcher = "true",
FieldsRename = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
{
FromName = "record.name",
ToName = "record.title",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs
{
Type = "dql",
Id = "processor_Combine_title_and_summary_to_name_8808",
Description = "Combine title and summary to name",
SampleData = @"{
""record.title"": ""Warning"",
""record.summary"": ""Request failed""
}",
Matcher = "true",
Dql = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDqlArgs
{
Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
Enabled = true,
},
},
},
},
Davis = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorArgs
{
Type = "davis",
Id = "processor_Create_warning_event_8226",
Description = "Create warning event",
Matcher = "true",
Davis = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisArgs
{
Properties = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesArgs
{
Properties = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.type",
Value = "CUSTOM_ALERT",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.name",
Value = "Warning detected",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.description",
Value = "Warning: {dims:record.summary}",
},
},
},
},
Enabled = true,
},
},
},
},
MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "counterMetric",
Id = "processor_Count_warning_events_6392",
Description = "Count warnings",
Matcher = "true",
CounterMetric = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
{
MetricKey = "warning.count",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "valueMetric",
Id = "processor_Warning_timeout_1990",
Description = "Warning timeout",
Matcher = "true",
ValueMetric = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
{
MetricKey = "warning.timeout",
Field = "recording.timeout_in_min",
DefaultValue = "60",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
},
},
},
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs
{
Type = "securityContext",
Id = "processor_Use_dt.security_context_if_set_1080",
Description = "Use dt.security_context if set",
Matcher = "isNotNull(dt.security_context)",
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "field",
Field = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
{
SourceFieldName = "dt.security_context",
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs
{
Type = "securityContext",
Id = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
Description = "Assign warnings to ACME teams if no context set",
Matcher = "isNull(dt.security_context)",
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "multiValueConstant",
MultiValueConstants = new[]
{
"ACME1",
"ACME2",
},
},
},
Enabled = true,
},
},
},
},
Storage = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesStorageArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorArgs
{
Type = "bucketAssignment",
Id = "processor_Add_to_default_bucket_5010",
Description = "Add to default bucket",
Matcher = "true",
BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBucketAssignmentArgs
{
BucketName = "default_events",
},
Enabled = true,
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.OpenpipelineV2EventsSecurityPipelines;
import com.pulumi.dynatrace.OpenpipelineV2EventsSecurityPipelinesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetadataListArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetadataListMetadataArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDqlArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesStorageArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var max_pipeline = new OpenpipelineV2EventsSecurityPipelines("max-pipeline", OpenpipelineV2EventsSecurityPipelinesArgs.builder()
.displayName("Warning pipeline")
.customId("pipeline_Warning_pipeline_2773_tf_#name#")
.metadataList(OpenpipelineV2EventsSecurityPipelinesMetadataListArgs.builder()
.metadatas(OpenpipelineV2EventsSecurityPipelinesMetadataListMetadataArgs.builder()
.entryKey("environment")
.entryValue("production")
.build())
.build())
.processing(OpenpipelineV2EventsSecurityPipelinesProcessingArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsArgs.builder()
.processors(
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs.builder()
.type("drop")
.id("processor_Drop_unnecessary_records_3802")
.description("Drop unnecessary records")
.matcher("not matchesPhrase(record.name, \"Warning\")")
.enabled(true)
.build(),
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsAdd")
.id("processor_Add_warning_flag_5434")
.description("Add warning flag")
.matcher("matchesPhrase(record.name, \"Warning\")")
.sampleData("""
{
"record.name": "Warning record"
} """)
.fieldsAdd(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
.fields(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
.fields(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
.name("is_warning")
.value("true")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRemove")
.id("processor_Remove_details_field_8539")
.description("Remove details field")
.sampleData("""
{
"record.name": "Warning",
"record.details": "some record details"
} """)
.matcher("isNotNull(record.details)")
.fieldsRemove(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
.fields("record.details")
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRename")
.id("processor_Rename_name_to_title_8530")
.description("Rename name to title")
.sampleData("""
{
"record.name": "Warning"
} """)
.matcher("true")
.fieldsRename(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
.fields(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
.fields(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
.fromName("record.name")
.toName("record.title")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs.builder()
.type("dql")
.id("processor_Combine_title_and_summary_to_name_8808")
.description("Combine title and summary to name")
.sampleData("""
{
"record.title": "Warning",
"record.summary": "Request failed"
} """)
.matcher("true")
.dql(OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDqlArgs.builder()
.script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
.build())
.enabled(true)
.build())
.build())
.build())
.davis(OpenpipelineV2EventsSecurityPipelinesDavisArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesDavisProcessorsArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorArgs.builder()
.type("davis")
.id("processor_Create_warning_event_8226")
.description("Create warning event")
.matcher("true")
.davis(OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisArgs.builder()
.properties(OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesArgs.builder()
.properties(
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.type")
.value("CUSTOM_ALERT")
.build(),
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.name")
.value("Warning detected")
.build(),
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.description")
.value("Warning: {dims:record.summary}")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.metricExtraction(OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsArgs.builder()
.processors(
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("counterMetric")
.id("processor_Count_warning_events_6392")
.description("Count warnings")
.matcher("true")
.counterMetric(OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
.metricKey("warning.count")
.dimensions(OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("valueMetric")
.id("processor_Warning_timeout_1990")
.description("Warning timeout")
.matcher("true")
.valueMetric(OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
.metricKey("warning.timeout")
.field("recording.timeout_in_min")
.defaultValue("60")
.dimensions(OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.securityContext(OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsArgs.builder()
.processors(
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs.builder()
.type("securityContext")
.id("processor_Use_dt.security_context_if_set_1080")
.description("Use dt.security_context if set")
.matcher("isNotNull(dt.security_context)")
.securityContext(OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("field")
.field(OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
.sourceFieldName("dt.security_context")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs.builder()
.type("securityContext")
.id("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465")
.description("Assign warnings to ACME teams if no context set")
.matcher("isNull(dt.security_context)")
.securityContext(OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("multiValueConstant")
.multiValueConstants(
"ACME1",
"ACME2")
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.storage(OpenpipelineV2EventsSecurityPipelinesStorageArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesStorageProcessorsArgs.builder()
.processors(OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorArgs.builder()
.type("bucketAssignment")
.id("processor_Add_to_default_bucket_5010")
.description("Add to default bucket")
.matcher("true")
.bucketAssignment(OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
.bucketName("default_events")
.build())
.enabled(true)
.build())
.build())
.build())
.build());
}
}
resources:
max-pipeline:
type: dynatrace:OpenpipelineV2EventsSecurityPipelines
properties:
displayName: Warning pipeline
customId: pipeline_Warning_pipeline_2773_tf_#name#
metadataList:
metadatas:
- entryKey: environment
entryValue: production
processing:
processors:
processors:
- type: drop
id: processor_Drop_unnecessary_records_3802
description: Drop unnecessary records
matcher: not matchesPhrase(record.name, "Warning")
enabled: true
- type: fieldsAdd
id: processor_Add_warning_flag_5434
description: Add warning flag
matcher: matchesPhrase(record.name, "Warning")
sampleData: "{\n \"record.name\": \"Warning record\" \n}"
fieldsAdd:
fields:
fields:
- name: is_warning
value: 'true'
enabled: true
- type: fieldsRemove
id: processor_Remove_details_field_8539
description: Remove details field
sampleData: |-
{
"record.name": "Warning",
"record.details": "some record details"
}
matcher: isNotNull(record.details)
fieldsRemove:
fields:
- record.details
enabled: true
- type: fieldsRename
id: processor_Rename_name_to_title_8530
description: Rename name to title
sampleData: |-
{
"record.name": "Warning"
}
matcher: 'true'
fieldsRename:
fields:
fields:
- fromName: record.name
toName: record.title
enabled: true
- type: dql
id: processor_Combine_title_and_summary_to_name_8808
description: Combine title and summary to name
sampleData: |-
{
"record.title": "Warning",
"record.summary": "Request failed"
}
matcher: 'true'
dql:
script: fieldsAdd record.name = concat(record.title, " - ", record.summary)
enabled: true
davis:
processors:
processors:
- type: davis
id: processor_Create_warning_event_8226
description: Create warning event
matcher: 'true'
davis:
properties:
properties:
- key: event.type
value: CUSTOM_ALERT
- key: event.name
value: Warning detected
- key: event.description
value: 'Warning: {dims:record.summary}'
enabled: true
metricExtraction:
processors:
processors:
- type: counterMetric
id: processor_Count_warning_events_6392
description: Count warnings
matcher: 'true'
counterMetric:
metricKey: warning.count
dimensions:
dimensions:
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.costcenter
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.product
- extractionType: field
strategy: equals
sourceFieldName: dt.security_context
- extractionType: field
strategy: equals
sourceFieldName: record.category
destinationFieldName: warning_category
enabled: true
- type: valueMetric
id: processor_Warning_timeout_1990
description: Warning timeout
matcher: 'true'
valueMetric:
metricKey: warning.timeout
field: recording.timeout_in_min
defaultValue: 60
dimensions:
dimensions:
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.costcenter
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.product
- extractionType: field
strategy: equals
sourceFieldName: dt.security_context
- extractionType: field
strategy: equals
sourceFieldName: record.category
destinationFieldName: warning_category
enabled: true
securityContext:
processors:
processors:
- type: securityContext
id: processor_Use_dt.security_context_if_set_1080
description: Use dt.security_context if set
matcher: isNotNull(dt.security_context)
securityContext:
value:
type: field
field:
sourceFieldName: dt.security_context
enabled: true
- type: securityContext
id: processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465
description: Assign warnings to ACME teams if no context set
matcher: isNull(dt.security_context)
securityContext:
value:
type: multiValueConstant
multiValueConstants:
- ACME1
- ACME2
enabled: true
storage:
processors:
processors:
- type: bucketAssignment
id: processor_Add_to_default_bucket_5010
description: Add to default bucket
matcher: 'true'
bucketAssignment:
bucketName: default_events
enabled: true
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_openpipelinev2eventssecuritypipelines" "max-pipeline" {
display_name = "Warning pipeline"
custom_id = "pipeline_Warning_pipeline_2773_tf_#name#"
metadata_list = {
metadatas = [{
"entryKey" = "environment"
"entryValue" = "production"
}]
}
processing = {
processors = {
processors = [{
"type" = "drop"
"id" = "processor_Drop_unnecessary_records_3802"
"description" = "Drop unnecessary records"
"matcher" = "not matchesPhrase(record.name, \"Warning\")"
"enabled" = true
}, {
"type" = "fieldsAdd"
"id" = "processor_Add_warning_flag_5434"
"description" = "Add warning flag"
"matcher" = "matchesPhrase(record.name, \"Warning\")"
"sampleData" = "{\n \"record.name\": \"Warning record\" \n}"
"fieldsAdd" = {
"fields" = {
"fields" = [{
"name" = "is_warning"
"value" = "true"
}]
}
}
"enabled" = true
}, {
"type" = "fieldsRemove"
"id" = "processor_Remove_details_field_8539"
"description" = "Remove details field"
"sampleData" = "{\n \"record.name\": \"Warning\",\n \"record.details\": \"some record details\"\n}"
"matcher" = "isNotNull(record.details)"
"fieldsRemove" = {
"fields" = ["record.details"]
}
"enabled" = true
}, {
"type" = "fieldsRename"
"id" = "processor_Rename_name_to_title_8530"
"description" = "Rename name to title"
"sampleData" = "{\n \"record.name\": \"Warning\"\n}"
"matcher" = "true"
"fieldsRename" = {
"fields" = {
"fields" = [{
"fromName" = "record.name"
"toName" = "record.title"
}]
}
}
"enabled" = true
}, {
"type" = "dql"
"id" = "processor_Combine_title_and_summary_to_name_8808"
"description" = "Combine title and summary to name"
"sampleData" = "{\n \"record.title\": \"Warning\",\n \"record.summary\": \"Request failed\"\n}"
"matcher" = "true"
"dql" = {
"script" = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)"
}
"enabled" = true
}]
}
}
davis = {
processors = {
processors = [{
"type" = "davis"
"id" = "processor_Create_warning_event_8226"
"description" = "Create warning event"
"matcher" = "true"
"davis" = {
"properties" = {
"properties" = [{
"key" = "event.type"
"value" = "CUSTOM_ALERT"
}, {
"key" = "event.name"
"value" = "Warning detected"
}, {
"key" = "event.description"
"value" = "Warning: {dims:record.summary}"
}]
}
}
"enabled" = true
}]
}
}
metric_extraction = {
processors = {
processors = [{
"type" = "counterMetric"
"id" = "processor_Count_warning_events_6392"
"description" = "Count warnings"
"matcher" = "true"
"counterMetric" = {
"metricKey" = "warning.count"
"dimensions" = {
"dimensions" = [{
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.costcenter"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.product"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.security_context"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "record.category"
"destinationFieldName" = "warning_category"
}]
}
}
"enabled" = true
}, {
"type" = "valueMetric"
"id" = "processor_Warning_timeout_1990"
"description" = "Warning timeout"
"matcher" = "true"
"valueMetric" = {
"metricKey" = "warning.timeout"
"field" = "recording.timeout_in_min"
"defaultValue" = 60
"dimensions" = {
"dimensions" = [{
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.costcenter"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.product"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.security_context"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "record.category"
"destinationFieldName" = "warning_category"
}]
}
}
"enabled" = true
}]
}
}
security_context = {
processors = {
processors = [{
"type" = "securityContext"
"id" = "processor_Use_dt.security_context_if_set_1080"
"description" = "Use dt.security_context if set"
"matcher" = "isNotNull(dt.security_context)"
"securityContext" = {
"value" = {
"type" = "field"
"field" = {
"sourceFieldName" = "dt.security_context"
}
}
}
"enabled" = true
}, {
"type" = "securityContext"
"id" = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"
"description" = "Assign warnings to ACME teams if no context set"
"matcher" = "isNull(dt.security_context)"
"securityContext" = {
"value" = {
"type" = "multiValueConstant"
"multiValueConstants" = ["ACME1", "ACME2"]
}
}
"enabled" = true
}]
}
}
storage = {
processors = {
processors = [{
"type" = "bucketAssignment"
"id" = "processor_Add_to_default_bucket_5010"
"description" = "Add to default bucket"
"matcher" = "true"
"bucketAssignment" = {
"bucketName" = "default_events"
}
"enabled" = true
}]
}
}
}
Create OpenpipelineV2EventsSecurityPipelines Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenpipelineV2EventsSecurityPipelines(name: string, args: OpenpipelineV2EventsSecurityPipelinesArgs, opts?: CustomResourceOptions);@overload
def OpenpipelineV2EventsSecurityPipelines(resource_name: str,
args: OpenpipelineV2EventsSecurityPipelinesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenpipelineV2EventsSecurityPipelines(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
custom_id: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2EventsSecurityPipelinesMetadataListArgs] = None,
davis: Optional[OpenpipelineV2EventsSecurityPipelinesDavisArgs] = None,
data_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesDataExtractionArgs] = None,
group_role: Optional[str] = None,
cost_allocation: Optional[OpenpipelineV2EventsSecurityPipelinesCostAllocationArgs] = None,
metric_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2EventsSecurityPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2EventsSecurityPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2EventsSecurityPipelinesStorageArgs] = None)func NewOpenpipelineV2EventsSecurityPipelines(ctx *Context, name string, args OpenpipelineV2EventsSecurityPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2EventsSecurityPipelines, error)public OpenpipelineV2EventsSecurityPipelines(string name, OpenpipelineV2EventsSecurityPipelinesArgs args, CustomResourceOptions? opts = null)
public OpenpipelineV2EventsSecurityPipelines(String name, OpenpipelineV2EventsSecurityPipelinesArgs args)
public OpenpipelineV2EventsSecurityPipelines(String name, OpenpipelineV2EventsSecurityPipelinesArgs args, CustomResourceOptions options)
type: dynatrace:OpenpipelineV2EventsSecurityPipelines
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_openpipeline_v2_events_security_pipelines" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenpipelineV2EventsSecurityPipelinesArgs
- 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 OpenpipelineV2EventsSecurityPipelinesArgs
- 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 OpenpipelineV2EventsSecurityPipelinesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenpipelineV2EventsSecurityPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenpipelineV2EventsSecurityPipelinesArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OpenpipelineV2EventsSecurityPipelines 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 OpenpipelineV2EventsSecurityPipelines resource accepts the following input properties:
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation - Cost allocation stage
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage - Storage stage
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Args - Cost allocation stage
- Data
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Events Security Pipelines Davis Args - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Events Security Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Events Security Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Events Security Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Events Security Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Events Security Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Events Security Pipelines Storage Args - Storage stage
- custom_
id string - Custom pipeline id
- display_
name string - Display name
- cost_
allocation object - Cost allocation stage
- data_
extraction object - Data extraction stage
- davis object
- Davis event extraction stage
- group_
role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list object - Pipeline metadata list
- metric_
extraction object - Metrics extraction stage
- processing object
- Processing stage
- product_
allocation object - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security_
context object - Security context stage
- smartscape_
edge_ objectextraction - Smartscape edge extraction stage
- smartscape_
node_ objectextraction - Smartscape node extraction stage
- storage object
- Storage stage
- custom
Id String - Custom pipeline id
- display
Name String - Display name
- cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Events Security Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Security Pipelines Davis - Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Security Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Security Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Security Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Security Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Security Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Security Pipelines Storage - Storage stage
- custom
Id string - Custom pipeline id
- display
Name string - Display name
- cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Events Security Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Security Pipelines Davis - Davis event extraction stage
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Security Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Security Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Security Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Security Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Security Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Security Pipelines Storage - Storage stage
- custom_
id str - Custom pipeline id
- display_
name str - Display name
- cost_
allocation OpenpipelineV2Events Security Pipelines Cost Allocation Args - Cost allocation stage
- data_
extraction OpenpipelineV2Events Security Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Events Security Pipelines Davis Args - Davis event extraction stage
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Events Security Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Events Security Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Events Security Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Events Security Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Events Security Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Events Security Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Events Security Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Events Security Pipelines Storage Args - Storage stage
- custom
Id String - Custom pipeline id
- display
Name String - Display name
- cost
Allocation Property Map - Cost allocation stage
- data
Extraction Property Map - Data extraction stage
- davis Property Map
- Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List Property Map - Pipeline metadata list
- metric
Extraction Property Map - Metrics extraction stage
- processing Property Map
- Processing stage
- product
Allocation Property Map - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context Property Map - Security context stage
- smartscape
Edge Property MapExtraction - Smartscape edge extraction stage
- smartscape
Node Property MapExtraction - Smartscape node extraction stage
- storage Property Map
- Storage stage
Outputs
All input properties are implicitly available as output properties. Additionally, the OpenpipelineV2EventsSecurityPipelines 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 OpenpipelineV2EventsSecurityPipelines Resource
Get an existing OpenpipelineV2EventsSecurityPipelines 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?: OpenpipelineV2EventsSecurityPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2EventsSecurityPipelines@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cost_allocation: Optional[OpenpipelineV2EventsSecurityPipelinesCostAllocationArgs] = None,
custom_id: Optional[str] = None,
data_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesDataExtractionArgs] = None,
davis: Optional[OpenpipelineV2EventsSecurityPipelinesDavisArgs] = None,
display_name: Optional[str] = None,
group_role: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2EventsSecurityPipelinesMetadataListArgs] = None,
metric_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2EventsSecurityPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2EventsSecurityPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2EventsSecurityPipelinesStorageArgs] = None) -> OpenpipelineV2EventsSecurityPipelinesfunc GetOpenpipelineV2EventsSecurityPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2EventsSecurityPipelinesState, opts ...ResourceOption) (*OpenpipelineV2EventsSecurityPipelines, error)public static OpenpipelineV2EventsSecurityPipelines Get(string name, Input<string> id, OpenpipelineV2EventsSecurityPipelinesState? state, CustomResourceOptions? opts = null)public static OpenpipelineV2EventsSecurityPipelines get(String name, Output<String> id, OpenpipelineV2EventsSecurityPipelinesState state, CustomResourceOptions options)resources: _: type: dynatrace:OpenpipelineV2EventsSecurityPipelines get: id: ${id}import {
to = dynatrace_openpipeline_v2_events_security_pipelines.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis - Davis event extraction stage
- Display
Name string - Display name
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage - Storage stage
- Cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Args - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Events Security Pipelines Davis Args - Davis event extraction stage
- Display
Name string - Display name
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Events Security Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Events Security Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Events Security Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Events Security Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Events Security Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Events Security Pipelines Storage Args - Storage stage
- cost_
allocation object - Cost allocation stage
- custom_
id string - Custom pipeline id
- data_
extraction object - Data extraction stage
- davis object
- Davis event extraction stage
- display_
name string - Display name
- group_
role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list object - Pipeline metadata list
- metric_
extraction object - Metrics extraction stage
- processing object
- Processing stage
- product_
allocation object - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security_
context object - Security context stage
- smartscape_
edge_ objectextraction - Smartscape edge extraction stage
- smartscape_
node_ objectextraction - Smartscape node extraction stage
- storage object
- Storage stage
- cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction OpenpipelineV2Events Security Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Security Pipelines Davis - Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Security Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Security Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Security Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Security Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Security Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Security Pipelines Storage - Storage stage
- cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation - Cost allocation stage
- custom
Id string - Custom pipeline id
- data
Extraction OpenpipelineV2Events Security Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Security Pipelines Davis - Davis event extraction stage
- display
Name string - Display name
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Security Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Security Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Security Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Security Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Security Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Security Pipelines Storage - Storage stage
- cost_
allocation OpenpipelineV2Events Security Pipelines Cost Allocation Args - Cost allocation stage
- custom_
id str - Custom pipeline id
- data_
extraction OpenpipelineV2Events Security Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Events Security Pipelines Davis Args - Davis event extraction stage
- display_
name str - Display name
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Events Security Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Events Security Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Events Security Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Events Security Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Events Security Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Events Security Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Events Security Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Events Security Pipelines Storage Args - Storage stage
- cost
Allocation Property Map - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction Property Map - Data extraction stage
- davis Property Map
- Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List Property Map - Pipeline metadata list
- metric
Extraction Property Map - Metrics extraction stage
- processing Property Map
- Processing stage
- product
Allocation Property Map - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context Property Map - Security context stage
- smartscape
Edge Property MapExtraction - Smartscape edge extraction stage
- smartscape
Node Property MapExtraction - Smartscape node extraction stage
- storage Property Map
- Storage stage
Supporting Types
OpenpipelineV2EventsSecurityPipelinesCostAllocation, OpenpipelineV2EventsSecurityPipelinesCostAllocationArgs
- Processors
Openpipeline
V2Events Security Pipelines Cost Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Cost Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessors, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtraction, OpenpipelineV2EventsSecurityPipelinesDataExtractionArgs
- Processors
Openpipeline
V2Events Security Pipelines Data Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Data Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessors, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavis, OpenpipelineV2EventsSecurityPipelinesDavisArgs
- Processors
Openpipeline
V2Events Security Pipelines Davis Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Davis Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesDavisProcessors, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Davis Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetadataList, OpenpipelineV2EventsSecurityPipelinesMetadataListArgs
OpenpipelineV2EventsSecurityPipelinesMetadataListMetadata, OpenpipelineV2EventsSecurityPipelinesMetadataListMetadataArgs
- Entry
Key string - Metadata entry key
- Entry
Value string - Metadata entry value
- Entry
Key string - Metadata entry key
- Entry
Value string - Metadata entry value
- entry_
key string - Metadata entry key
- entry_
value string - Metadata entry value
- entry
Key String - Metadata entry key
- entry
Value String - Metadata entry value
- entry
Key string - Metadata entry key
- entry
Value string - Metadata entry value
- entry_
key str - Metadata entry key
- entry_
value str - Metadata entry value
- entry
Key String - Metadata entry key
- entry
Value String - Metadata entry value
OpenpipelineV2EventsSecurityPipelinesMetricExtraction, OpenpipelineV2EventsSecurityPipelinesMetricExtractionArgs
- Processors
Openpipeline
V2Events Security Pipelines Metric Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Metric Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessors, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessing, OpenpipelineV2EventsSecurityPipelinesProcessingArgs
- Processors
Openpipeline
V2Events Security Pipelines Processing Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Processing Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesProcessingProcessors, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Processing Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocation, OpenpipelineV2EventsSecurityPipelinesProductAllocationArgs
- Processors
Openpipeline
V2Events Security Pipelines Product Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Product Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessors, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Product Allocation Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Product Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContext, OpenpipelineV2EventsSecurityPipelinesSecurityContextArgs
- Processors
Openpipeline
V2Events Security Pipelines Security Context Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Security Context Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessors, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Security Context Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Security Context Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Security Context Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionArgs
- processors object
- Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessors, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Edge Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionArgs
- processors object
- Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessors, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Smartscape Node Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorage, OpenpipelineV2EventsSecurityPipelinesStorageArgs
- Processors
Openpipeline
V2Events Security Pipelines Storage Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Events Security Pipelines Storage Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSecurityPipelinesStorageProcessors, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessor, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Security Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Security Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Security Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Security Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Security Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Security Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Security Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Security Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Security Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Security Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Security Pipelines Storage Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Security Pipelines Storage Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizevent, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCostAllocation, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCounterMetric, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDavis, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Security Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDavisProperties, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDql, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRename, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorGeoLookup, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorInlineLookup, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorProductAllocation, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityContext, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Events Security Pipelines Storage Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Events Security Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Security Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Events Security Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Security Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Events Security Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Security Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Events Security Pipelines Storage Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorTechnology, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorValueMetric, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Security Pipelines Storage Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Events Security Pipelines Storage Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSecurityPipelinesStorageProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
published on Friday, Aug 14, 2026 by Pulumiverse