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.OpenpipelineV2EventsSdlcPipelinesdownloads all existing OpenPipeline definitions for events sdlc 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.OpenpipelineV2EventsSdlcPipelines("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.OpenpipelineV2EventsSdlcPipelines("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.NewOpenpipelineV2EventsSdlcPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2EventsSdlcPipelinesArgs{
DisplayName: pulumi.String("Warning pipeline"),
CustomId: pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
MetadataList: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetadataListArgs{
Metadatas: dynatrace.OpenpipelineV2EventsSdlcPipelinesMetadataListMetadataArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetadataListMetadataArgs{
EntryKey: pulumi.String("environment"),
EntryValue: pulumi.String("production"),
},
},
},
Processing: &dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingArgs{
Processors: &dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddArgs{
Fields: &dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
Fields: dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
Name: pulumi.String("is_warning"),
Value: pulumi.String("true"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
Fields: pulumi.StringArray{
pulumi.String("record.details"),
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
Fields: &dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
Fields: dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
FromName: pulumi.String("record.name"),
ToName: pulumi.String("record.title"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDqlArgs{
Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
Davis: &dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisArgs{
Processors: &dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorArgs{
Type: pulumi.String("davis"),
Id: pulumi.String("processor_Create_warning_event_8226"),
Description: pulumi.String("Create warning event"),
Matcher: pulumi.String("true"),
Davis: &dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisArgs{
Properties: &dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesArgs{
Properties: dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.type"),
Value: pulumi.String("CUSTOM_ALERT"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.name"),
Value: pulumi.String("Warning detected"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.description"),
Value: pulumi.String("Warning: {dims:record.summary}"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
MetricExtraction: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs{
Processors: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("counterMetric"),
Id: pulumi.String("processor_Count_warning_events_6392"),
Description: pulumi.String("Count warnings"),
Matcher: pulumi.String("true"),
CounterMetric: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
MetricKey: pulumi.String("warning.count"),
Dimensions: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("valueMetric"),
Id: pulumi.String("processor_Warning_timeout_1990"),
Description: pulumi.String("Warning timeout"),
Matcher: pulumi.String("true"),
ValueMetric: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
MetricKey: pulumi.String("warning.timeout"),
Field: pulumi.String("recording.timeout_in_min"),
DefaultValue: pulumi.String("60"),
Dimensions: &dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
SecurityContext: &dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs{
Processors: &dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("field"),
Field: &dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
SourceFieldName: pulumi.String("dt.security_context"),
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("multiValueConstant"),
MultiValueConstants: pulumi.StringArray{
pulumi.String("ACME1"),
pulumi.String("ACME2"),
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
Storage: &dynatrace.OpenpipelineV2EventsSdlcPipelinesStorageArgs{
Processors: &dynatrace.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsArgs{
Processors: dynatrace.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorArray{
&dynatrace.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorArgs{
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.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
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.OpenpipelineV2EventsSdlcPipelines("max-pipeline", new()
{
DisplayName = "Warning pipeline",
CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
MetadataList = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetadataListArgs
{
Metadatas = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetadataListMetadataArgs
{
EntryKey = "environment",
EntryValue = "production",
},
},
},
Processing = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs
{
Type = "drop",
Id = "processor_Drop_unnecessary_records_3802",
Description = "Drop unnecessary records",
Matcher = "not matchesPhrase(record.name, \"Warning\")",
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs
{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
{
Name = "is_warning",
Value = "true",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs
{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
{
Fields = new[]
{
"record.details",
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRename",
Id = "processor_Rename_name_to_title_8530",
Description = "Rename name to title",
SampleData = @"{
""record.name"": ""Warning""
}",
Matcher = "true",
FieldsRename = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
{
FromName = "record.name",
ToName = "record.title",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs
{
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.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDqlArgs
{
Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
Enabled = true,
},
},
},
},
Davis = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorArgs
{
Type = "davis",
Id = "processor_Create_warning_event_8226",
Description = "Create warning event",
Matcher = "true",
Davis = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisArgs
{
Properties = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesArgs
{
Properties = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.type",
Value = "CUSTOM_ALERT",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.name",
Value = "Warning detected",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.description",
Value = "Warning: {dims:record.summary}",
},
},
},
},
Enabled = true,
},
},
},
},
MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "counterMetric",
Id = "processor_Count_warning_events_6392",
Description = "Count warnings",
Matcher = "true",
CounterMetric = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
{
MetricKey = "warning.count",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "valueMetric",
Id = "processor_Warning_timeout_1990",
Description = "Warning timeout",
Matcher = "true",
ValueMetric = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
{
MetricKey = "warning.timeout",
Field = "recording.timeout_in_min",
DefaultValue = "60",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
},
},
},
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs
{
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.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "field",
Field = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
{
SourceFieldName = "dt.security_context",
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs
{
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.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "multiValueConstant",
MultiValueConstants = new[]
{
"ACME1",
"ACME2",
},
},
},
Enabled = true,
},
},
},
},
Storage = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesStorageArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorArgs
{
Type = "bucketAssignment",
Id = "processor_Add_to_default_bucket_5010",
Description = "Add to default bucket",
Matcher = "true",
BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBucketAssignmentArgs
{
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.OpenpipelineV2EventsSdlcPipelines;
import com.pulumi.dynatrace.OpenpipelineV2EventsSdlcPipelinesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetadataListArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetadataListMetadataArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDqlArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesStorageArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
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 OpenpipelineV2EventsSdlcPipelines("max-pipeline", OpenpipelineV2EventsSdlcPipelinesArgs.builder()
.displayName("Warning pipeline")
.customId("pipeline_Warning_pipeline_2773_tf_#name#")
.metadataList(OpenpipelineV2EventsSdlcPipelinesMetadataListArgs.builder()
.metadatas(OpenpipelineV2EventsSdlcPipelinesMetadataListMetadataArgs.builder()
.entryKey("environment")
.entryValue("production")
.build())
.build())
.processing(OpenpipelineV2EventsSdlcPipelinesProcessingArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsArgs.builder()
.processors(
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs.builder()
.type("drop")
.id("processor_Drop_unnecessary_records_3802")
.description("Drop unnecessary records")
.matcher("not matchesPhrase(record.name, \"Warning\")")
.enabled(true)
.build(),
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsAdd")
.id("processor_Add_warning_flag_5434")
.description("Add warning flag")
.matcher("matchesPhrase(record.name, \"Warning\")")
.sampleData("""
{
"record.name": "Warning record"
} """)
.fieldsAdd(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
.fields(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
.fields(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
.name("is_warning")
.value("true")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs.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(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
.fields("record.details")
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRename")
.id("processor_Rename_name_to_title_8530")
.description("Rename name to title")
.sampleData("""
{
"record.name": "Warning"
} """)
.matcher("true")
.fieldsRename(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
.fields(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
.fields(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
.fromName("record.name")
.toName("record.title")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs.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(OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDqlArgs.builder()
.script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
.build())
.enabled(true)
.build())
.build())
.build())
.davis(OpenpipelineV2EventsSdlcPipelinesDavisArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesDavisProcessorsArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorArgs.builder()
.type("davis")
.id("processor_Create_warning_event_8226")
.description("Create warning event")
.matcher("true")
.davis(OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisArgs.builder()
.properties(OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesArgs.builder()
.properties(
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.type")
.value("CUSTOM_ALERT")
.build(),
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.name")
.value("Warning detected")
.build(),
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.description")
.value("Warning: {dims:record.summary}")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.metricExtraction(OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsArgs.builder()
.processors(
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("counterMetric")
.id("processor_Count_warning_events_6392")
.description("Count warnings")
.matcher("true")
.counterMetric(OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
.metricKey("warning.count")
.dimensions(OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("valueMetric")
.id("processor_Warning_timeout_1990")
.description("Warning timeout")
.matcher("true")
.valueMetric(OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
.metricKey("warning.timeout")
.field("recording.timeout_in_min")
.defaultValue("60")
.dimensions(OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.securityContext(OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsArgs.builder()
.processors(
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("field")
.field(OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
.sourceFieldName("dt.security_context")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("multiValueConstant")
.multiValueConstants(
"ACME1",
"ACME2")
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.storage(OpenpipelineV2EventsSdlcPipelinesStorageArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesStorageProcessorsArgs.builder()
.processors(OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorArgs.builder()
.type("bucketAssignment")
.id("processor_Add_to_default_bucket_5010")
.description("Add to default bucket")
.matcher("true")
.bucketAssignment(OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
.bucketName("default_events")
.build())
.enabled(true)
.build())
.build())
.build())
.build());
}
}
resources:
max-pipeline:
type: dynatrace:OpenpipelineV2EventsSdlcPipelines
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_openpipelinev2eventssdlcpipelines" "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 OpenpipelineV2EventsSdlcPipelines Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenpipelineV2EventsSdlcPipelines(name: string, args: OpenpipelineV2EventsSdlcPipelinesArgs, opts?: CustomResourceOptions);@overload
def OpenpipelineV2EventsSdlcPipelines(resource_name: str,
args: OpenpipelineV2EventsSdlcPipelinesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenpipelineV2EventsSdlcPipelines(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
custom_id: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2EventsSdlcPipelinesMetadataListArgs] = None,
davis: Optional[OpenpipelineV2EventsSdlcPipelinesDavisArgs] = None,
data_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesDataExtractionArgs] = None,
group_role: Optional[str] = None,
cost_allocation: Optional[OpenpipelineV2EventsSdlcPipelinesCostAllocationArgs] = None,
metric_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2EventsSdlcPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2EventsSdlcPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2EventsSdlcPipelinesStorageArgs] = None)func NewOpenpipelineV2EventsSdlcPipelines(ctx *Context, name string, args OpenpipelineV2EventsSdlcPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2EventsSdlcPipelines, error)public OpenpipelineV2EventsSdlcPipelines(string name, OpenpipelineV2EventsSdlcPipelinesArgs args, CustomResourceOptions? opts = null)
public OpenpipelineV2EventsSdlcPipelines(String name, OpenpipelineV2EventsSdlcPipelinesArgs args)
public OpenpipelineV2EventsSdlcPipelines(String name, OpenpipelineV2EventsSdlcPipelinesArgs args, CustomResourceOptions options)
type: dynatrace:OpenpipelineV2EventsSdlcPipelines
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_openpipeline_v2_events_sdlc_pipelines" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenpipelineV2EventsSdlcPipelinesArgs
- 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 OpenpipelineV2EventsSdlcPipelinesArgs
- 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 OpenpipelineV2EventsSdlcPipelinesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenpipelineV2EventsSdlcPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenpipelineV2EventsSdlcPipelinesArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OpenpipelineV2EventsSdlcPipelines 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 OpenpipelineV2EventsSdlcPipelines resource accepts the following input properties:
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation - Cost allocation stage
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage - Storage stage
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Args - Cost allocation stage
- Data
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Events Sdlc Pipelines Davis Args - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Events Sdlc Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Events Sdlc Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Events Sdlc Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Sdlc Pipelines Davis - Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Sdlc Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Sdlc Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Sdlc Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Sdlc Pipelines Storage - Storage stage
- custom
Id string - Custom pipeline id
- display
Name string - Display name
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Sdlc Pipelines Davis - Davis event extraction stage
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Sdlc Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Sdlc Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Sdlc Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Sdlc Pipelines Storage - Storage stage
- custom_
id str - Custom pipeline id
- display_
name str - Display name
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Args - Cost allocation stage
- data_
extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Events Sdlc Pipelines Davis Args - Davis event extraction stage
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Events Sdlc Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Events Sdlc Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Events Sdlc Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Events Sdlc Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Events Sdlc Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Events Sdlc 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 OpenpipelineV2EventsSdlcPipelines 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 OpenpipelineV2EventsSdlcPipelines Resource
Get an existing OpenpipelineV2EventsSdlcPipelines 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?: OpenpipelineV2EventsSdlcPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2EventsSdlcPipelines@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cost_allocation: Optional[OpenpipelineV2EventsSdlcPipelinesCostAllocationArgs] = None,
custom_id: Optional[str] = None,
data_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesDataExtractionArgs] = None,
davis: Optional[OpenpipelineV2EventsSdlcPipelinesDavisArgs] = None,
display_name: Optional[str] = None,
group_role: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2EventsSdlcPipelinesMetadataListArgs] = None,
metric_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2EventsSdlcPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2EventsSdlcPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2EventsSdlcPipelinesStorageArgs] = None) -> OpenpipelineV2EventsSdlcPipelinesfunc GetOpenpipelineV2EventsSdlcPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2EventsSdlcPipelinesState, opts ...ResourceOption) (*OpenpipelineV2EventsSdlcPipelines, error)public static OpenpipelineV2EventsSdlcPipelines Get(string name, Input<string> id, OpenpipelineV2EventsSdlcPipelinesState? state, CustomResourceOptions? opts = null)public static OpenpipelineV2EventsSdlcPipelines get(String name, Output<String> id, OpenpipelineV2EventsSdlcPipelinesState state, CustomResourceOptions options)resources: _: type: dynatrace:OpenpipelineV2EventsSdlcPipelines get: id: ${id}import {
to = dynatrace_openpipeline_v2_events_sdlc_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 Sdlc Pipelines Cost Allocation - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage - Storage stage
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Args - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Events Sdlc Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Events Sdlc Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Cost Allocation - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Sdlc Pipelines Davis - Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Sdlc Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Sdlc Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Sdlc Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Sdlc Pipelines Storage - Storage stage
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation - Cost allocation stage
- custom
Id string - Custom pipeline id
- data
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Events Sdlc Pipelines Davis - Davis event extraction stage
- display
Name string - Display name
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Events Sdlc Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Events Sdlc Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Events Sdlc Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Events Sdlc Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Events Sdlc Pipelines Storage - Storage stage
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Args - Cost allocation stage
- custom_
id str - Custom pipeline id
- data_
extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Events Sdlc Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Events Sdlc Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Events Sdlc Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Events Sdlc Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocation, OpenpipelineV2EventsSdlcPipelinesCostAllocationArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessors, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorArgs
- 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 Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtraction, OpenpipelineV2EventsSdlcPipelinesDataExtractionArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessors, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorArgs
- 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 Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavis, OpenpipelineV2EventsSdlcPipelinesDavisArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Davis Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Davis Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesDavisProcessors, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorArgs
- 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 Sdlc Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetadataList, OpenpipelineV2EventsSdlcPipelinesMetadataListArgs
OpenpipelineV2EventsSdlcPipelinesMetadataListMetadata, OpenpipelineV2EventsSdlcPipelinesMetadataListMetadataArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtraction, OpenpipelineV2EventsSdlcPipelinesMetricExtractionArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessors, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorArgs
- 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 Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessing, OpenpipelineV2EventsSdlcPipelinesProcessingArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Processing Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Processing Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesProcessingProcessors, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorArgs
- 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 Sdlc Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocation, OpenpipelineV2EventsSdlcPipelinesProductAllocationArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessors, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorArgs
- 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 Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContext, OpenpipelineV2EventsSdlcPipelinesSecurityContextArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Security Context Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Security Context Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessors, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorArgs
- 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 Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessors, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorArgs
- 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessors, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorArgs
- 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorage, OpenpipelineV2EventsSdlcPipelinesStorageArgs
- Processors
Openpipeline
V2Events Sdlc Pipelines Storage Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Events Sdlc Pipelines Storage Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2EventsSdlcPipelinesStorageProcessors, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessor, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorArgs
- 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 Sdlc Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Events Sdlc Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwarding, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizevent, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventProvider, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventProviderField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventType, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventTypeField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBucketAssignment, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCostAllocation, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCostAllocationValue, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCostAllocationValueField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCounterMetric, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDavis, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDavisProperties, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDql, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorDqlArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsAdd, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsAddFields, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRemove, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRename, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRenameFields, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorGeoLookup, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorHistogramMetric, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorInlineLookup, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorProductAllocation, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorProductAllocationValue, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorProductAllocationValueField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEvent, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventType, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityContext, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Events Sdlc Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityContextValue, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityContextValueField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEvent, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeEdge, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNode, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Events Sdlc 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 Sdlc 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 Sdlc Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Events Sdlc 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 Sdlc Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Events Sdlc Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Events Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Events Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorTechnology, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorValueMetric, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorValueMetricArgs
- 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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 Sdlc 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
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorValueMetricDimensions, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2EventsSdlcPipelinesStorageProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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